정수 제곱근의 순서


17

정수 제곱근의 시퀀스를 정의 해 봅시다. 먼저, a (1) = 1입니다. 그런 다음 a (n)은 전에 보이지 않은 가장 작은 양의 정수 입니다.

sqrt(a(n) + sqrt(a(n-1) + sqrt(... + sqrt(a(1)))))

정수입니다. 몇 가지 예 :

a (2)는 3이므로 가장 작은 정수이므로 sqrt(a(2) + sqrt(a(1))) = sqrt(a(2) + 1) 3이며 이전에는 시퀀스에서 3이 발생하지 않았습니다.

a (3)은 2와 같이 정수가 가장 작은 정수이므로 sqrt(a(3) + sqrt(a(2) + sqrt(a(1)))) = sqrt(a(3) + 2)2이며, 시퀀스에서 2가 발생하지 않았습니다.

sqrt(a(4) + 2)정수 이므로 a (4)는 7 입니다. 2는 이미 시퀀스에서 발생했기 때문에 a (4) = 2를 가질 수 없습니다.

매개 변수 n 이 주어진 프로그램 또는 함수를 작성하면 숫자 a (1)에서 a (n)까지의 시퀀스가 ​​반환됩니다.

순서는 1,3,2,7,6,13,5, ...로 시작합니다.

이 시퀀스의 소스는이 Math.SE 질문 에서 나온 것 입니다.


시퀀스에서 처음 1000 개의 요소에 대한 플롯 :

음모



1
@ Mr.Xcoder 그게 그냥 재미 있어요!
orlp

@ Mr.Xcoder 그래, 난 그냥 당신이 수식을 복사하여 붙여 넣을 수 없습니다 너무 나쁘다는 것에 동의합니다 ...
에릭 The Outgolfer

2
@EriktheOutgolfer No. n 을 입력으로 받으면 a (1)에서 a (n)의 목록을 반환하거나 인쇄해야합니다. 즉, 시퀀스에서 처음 n 개의 숫자입니다. '인덱싱'이 없습니다.
orlp

1
부동 소수점 부정확성으로 인한 오류가 매우 큰 입력에 허용됩니까?
Zgarb

답변:



3

하스켈 , 103 87 바이트

끔찍하게 비효율적이지만 부동 소수점 산술에 의존하지 않습니다. 다음 a(x) = sqrt(f(x)+a(x-1))은 계산을 단순화하는 도우미 시퀀스입니다.

a 0=0
a x=[k|k<-[1..],m<-[k^2-a(x-1)],m>0,notElem m$f<$>[1..x-1]]!!0
f x=(a x)^2-a(x-1)

온라인으로 사용해보십시오!



3

MATL , 30 27 바이트

lXHiq:"`@ymH@+X^1\+}8MXHx@h

온라인으로 사용해보십시오! 또는 그래픽 디스플레이를 참조하십시오 (약간의 시간이 소요됨)60 ).

설명

l          % Push 1. This is the array that holds the sequence, initialized to
           % a single term. Will be extended with subsequent terms
XH         % Copy into clipboard H, which holds the latest result of the 
           % "accumulated" square root
iq:"       % Input n. Do the following n-1 times
  `        %   Do...while
    @      %     Push interaton index k, starting at 1. This is the candidate
           %     to being the next term of the sequence
    y      %     Push copy of array of terms found so far
    m      %     Ismbmer? True if k is in the array
    H      %     Push accumulated root
    @+     %     Add k
    X^     %     Square root
    1\     %     Modulo 1. This gives 0 if k gives an integer square root
    +      %     Add. Gives nonzero if k is in the array or doesn't give an
           %     integer square root; that is, if k is invalid.
           %   The body of the do...while loop ends here. If the top of the
           %   stack is nonzero a new iteration will be run. If it is zero that
           %   means that the current k is a new term of the sequence
  }        %   Finally: this is executed after the last iteration, right before
           %   the loop is exited
    8M     %     Push latest result of the square root
    XH     %     Copy in clipboard K
    x      %     Delete
    @      %     Push current k
    h      %     Append to the array
           % End do...while (implicit)
           % Display (implicit)

3

수학, 104 바이트

(s=f={i=1};Do[t=1;While[!IntegerQ[d=Sqrt[t+s[[i]]]]||!f~FreeQ~t,t++];f~(A=AppendTo)~t;s~A~d;i++,#-1];f)&  


온라인으로 사용해보십시오!

제곱근의 순서도 매우 흥미 롭습니다 ...
그리고 비슷한 패턴을 출력합니다

1,2,2,3,3,4,3,5,3,6,4,4,5,4,6,5,5,6,6,7,4,7,5,7,6, 8,4,8,5,8,6,9,5,9,6,10,5,10,6,11,5,11,6,12,6,13,6,14,7,7, 8,7,9,7,10,7,11,7,12,7,13,7,14,8,8,9,8,10 ...

여기에 이미지 설명을 입력하십시오

또한 주요 순서의 차이점은 다음과 같습니다.

여기에 이미지 설명을 입력하십시오



2

자바 스크립트 (ES7), 89 82 77 76 바이트

i=>(g=k=>(s=(++n+k)**.5)%1||u[n]?g(k):i--?[u[n]=n,...g(s,n=0)]:[])(n=0,u=[])

데모

형식화 및 의견

i => (                             // given i = number of terms to compute
  u = [],                          // u = array of encountered values
  g = p =>                         // g = recursive function taking p = previous square root
    (s = (++n + p) ** .5) % 1      // increment n; if n + p is not a perfect square,
    || u[n] ?                      // or n was already used:
      g(p)                         //   do a recursive call with p unchanged
    :                              // else:
      i-- ?                        //   if there are other terms to compute:
        [u[n] = n, ...g(s, n = 0)] //     append n, set u[n] and call g() with p = s, n = 0
      :                            //   else:
        []                         //     stop recursion
  )(n = 0)                         // initial call to g() with n = p = 0

2

R , 138 (105) 99 바이트

function(n){for(i in 1:n){j=1
while(Reduce(function(x,y)(y+x)^.5,g<-c(T,j))%%1|j%in%T)j=j+1
T=g}
T}

온라인으로 사용해보십시오!

while 루프에서 Tfeld의 영리한 sqrt()%%1트릭 을 사용하는 -33 바이트

F 대신 T를 사용하여 -6 바이트

원래 답변, 138 바이트 :

function(n,l={}){g=function(L)Reduce(function(x,y)(y+x)^.5,L,0)
for(i in 1:n){T=1
while(g(c(l,T))!=g(c(l,T))%/%1|T%in%l)T=T+1
l=c(l,T)}
l}

온라인으로 사용해보십시오!


2

껍질 , 21 바이트

!¡oḟȯΛ±sFo√+Som:`-N;1

온라인으로 사용해보십시오!

어떻게?

!¡oḟȯΛ±sFo√+Som:`-N;1    Function that generates a list of prefixes of the sequence and indexes into it
                   ;1    The literal list [1]
 ¡                       Iterate the following function, collecting values in a list
  oḟȯΛ±sFo√+Som:`-N        This function takes a prefix of the sequence, l, and returns the next prefix.
                `-N      Get all the natural numbers that are not in l.
            Som:         Append l in front each of these numbers, generates all possible prefixes.
    ȯΛ±sFo√+               This predicate tests if sqrt(a(n) + sqrt(a(n-1) + sqrt(... + sqrt(a(1))))) is an integer.
        F                Fold from the left
         o√+             the composition of square root and plus
       s                 Convert to string
    ȯΛ±                  Are all the characters digits, (no '.')
  oḟ                     Find the first list in the list of possible prefixes that satisfies the above predicate
!                        Index into the list
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.