A186261 a(n) = 9*b_9(n) + 8, where b_9 lists the indices of zeros of the sequence A261309: u(n) = abs(u(n-1) - gcd(u(n-1), 9n-1)), u(1) = 1.
26, 269, 2699, 26423, 259829, 2595473, 25954289, 259491059, 2594910599, 25949104721, 259491047219, 2594905133453, 25949039883929, 259490398799609, 2594903521711517, 25949035214699921, 259490352146949701, 2594903520789157301, 25949035207891572929, 259490352078915446897
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=9; for(n=2, 1e8, a=abs(a-gcd(a, m*n-1)); if(a==0, print1(m*n+m-1, ", ")))
-
PARI
m=9;a=0;k=2; for(n=1,20,while(1<#(f=factor(N=m*(k+a)+m-1)[,1]) && a, k+=1+D=vecmin(apply(p->a%p,f)); a-=D+gcd(a-D,N));k+=a+1;print1(a=N,",")) \\ M. F. Hasler, Aug 22 2015
Formula
We conjecture that a(n) is asymptotic to c*10^n with c>0.
See the wiki link for a sketch of a proof of this conjecture. We find c=2.59490352... - M. F. Hasler, Aug 22 2015
Extensions
Edited by M. F. Hasler, Aug 14 2015
Comments