A186260 a(n) = 8*b_8(n)+7, where b_8 lists the zeros of the sequence A261308: u(n+1)=|u(n)-gcd(u(n), 8n+7)|, u(1)=1.
23, 167, 1511, 13463, 120167, 1076039, 9684359, 87158999, 784430279, 7059870119, 63537744791, 571838662007, 5146547952983, 46318929479831, 416870365318487, 3751833287866247, 33766499550040823, 303898495950141767, 2735086463015669687, 24615778167141027047
Offset: 1
Keywords
Links
- B. Cloitre, 10 conjectures in additive number theory, preprint arxiv:2011.4274 (2011).
- M. F. Hasler, Rowland-CloƮtre type prime generating sequences, OEIS Wiki, August 2015.
Programs
-
PARI
a=1; m=8; for(n=2, 10^8, a=abs(a-gcd(a, m*n-1)); if(a==0, print1(m*n+m-1, ", ")))
-
PARI
m=8; a=k=1; for(n=1, 20, while( a>D=vecmin(apply(p->a%p, factor(N=m*(k+a)+m-1)[, 1])), a-=D+gcd(a-D, N); k+=1+D); k+=a+1; print1(a=N, ", ")) \\ M. F. Hasler, Aug 22 2015
Formula
We conjecture that a(n) is asymptotic to c*9^n with c>0.
See the wiki link for a sketch of a proof of this conjecture. We find c = 2.024712577430180... - M. F. Hasler, Aug 22 2015
Extensions
Edited by M. F. Hasler, Aug 14 2015
More terms from M. F. Hasler, Aug 14 2015
Comments