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.
PROG
(PARI) Generator(n)={b1=2; list=[]; for(k=2, n, b2=b1+lcm(floor(sqrt(2)*k), b1); a=b2/b1-1; list=concat(list, a); b1=b2); print(list)}
CROSSREFS
KEYWORD
nonn
AUTHOR
Pedja Terzic, Jan 13 2019
STATUS
approved