OFFSET
1,3
COMMENTS
Conjectures:
1. This sequence consists only of 1's and primes.
2. Every odd prime of the form floor(sqrt(2)*m) is a term of this sequence.
3. At the first appearance of each prime of the form floor(sqrt(2)*m), it is the next prime after the largest prime that has already appeared.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10000
MATHEMATICA
1 / Divide @@@ Partition[FoldList[# + LCM[Floor[#2*Sqrt[2]], #] &, 2, Range[2, 100]], 2, 1] - 1 (* Paolo Xausa, Jan 08 2026 *)
PROG
(PARI) Generator(n)={b1=2; list=[]; for(k=2, n, b2=b1+lcm(sqrtint(2*k^2), b1); a=b2/b1-1; list=concat(list, a); b1=b2); list}
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Pedja Terzic, Jan 13 2019
STATUS
approved
