Secuencia de raíces cuadradas enteras

17

Definamos una secuencia de raíces cuadradas enteras. Primero, a (1) = 1. Luego, a (n) es el entero positivo más pequeño que no se haya visto antes, de modo que

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

es un entero Algunos ejemplos:

a (2) es 3 porque es el número entero más pequeño tal que sqrt(a(2) + sqrt(a(1))) = sqrt(a(2) + 1)es entero, y 3 no ha ocurrido antes en la secuencia.

a (3) es 2 porque es el número entero más pequeño tal que sqrt(a(3) + sqrt(a(2) + sqrt(a(1)))) = sqrt(a(3) + 2)es entero, y 2 no ha ocurrido en la secuencia antes.

a (4) es 7 porque sqrt(a(4) + 2)es entero. No podríamos tener un (4) = 2 porque ya ocurrió 2 en nuestra secuencia.

Escribir un programa o función que dado un parámetro n devuelve una secuencia de números a (1) a a (n).

La secuencia comienza 1,3,2,7,6,13,5, ....

Fuente de esta secuencia es de esta pregunta Math.SE .


Una gráfica de los primeros 1000 elementos en la secuencia:

trama

orlp
fuente
1
: '- (
Sr. Xcoder
1
@ Mr.Xcoder ¡Eso solo lo hace interesante!
orlp
@ Mr.Xcoder Sí, estoy de acuerdo en que es tan malo que no puedes copiar y pegar la fórmula ...
Erik the Outgolfer
2
@EriktheOutgolfer No. Cuando obtiene n como entrada, debe devolver o imprimir una lista de un (1) a un (n). En otras palabras, los primeros n números en la secuencia. No hay 'indexación'.
orlp
1
¿Son aceptables los errores causados ​​por imprecisiones de coma flotante para entradas muy grandes?
Zgarb

Respuestas:

3

Haskell , 103 87 bytes

Horriblemente ineficiente, pero no se basa en la aritmética de coma flotante. Aquí a(x) = sqrt(f(x)+a(x-1))hay una secuencia auxiliar, que simplifica el cálculo.

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)

Pruébalo en línea!

falla
fuente
3

Python 2 , 87 bytes

t,=s=1,
for n in~-input()*s:
 while(n in s)+(t+n)**.5%1:n+=1
 s+=n,;t=(t+n)**.5
print s

Pruébalo en línea!

-3 gracias al Sr. Xcoder .
-5 gracias a los ovs .

Erik el Outgolfer
fuente
92 bytes -> while n in s or(t+n)**.5%1>0->while(n in s)+(t+n)**.5%1
Sr. Xcoder
87 bytes
ovs
@ovs smart one
Erik the Outgolfer
3

MATL , 30 27 bytes

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

Pruébalo en línea! O vea una pantalla gráfica (toma un tiempo; se agota el tiempo de espera para entradas que exceden aproximadamente 60).

Explicación

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)
Luis Mendo
fuente
3

Mathematica, 104 bytes

(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)&  


Pruébalo en línea!

La secuencia de las raíces cuadradas también es muy interesante ...
y genera un patrón similar

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 ...

ingrese la descripción de la imagen aquí

También aquí están las diferencias de la secuencia principal

ingrese la descripción de la imagen aquí

J42161217
fuente
2

JavaScript (ES7), 89 82 77 76 bytes

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

Manifestación

Formateado y comentado

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
Arnauld
fuente
2

R , 138 105 99 bytes

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}

Pruébalo en línea!

-33 bytes usando el ingenioso sqrt()%%1truco de Tfeld en el bucle while

-6 bytes usando T en lugar de F

respuesta original, 138 bytes:

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}

Pruébalo en línea!

Giuseppe
fuente
2

Casco , 21 bytes

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

Pruébalo en línea!

¿Cómo?

!¡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
H.PWiz
fuente