login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A166134
a(n+1) is the smallest divisor of a(n)^2+1 that does not yet appear in the sequence, with a(1) = 1.
2
1, 2, 5, 13, 10, 101, 5101, 26, 677, 45833, 65, 2113, 446477, 130, 16901, 41, 29, 421, 17, 58, 673, 45293, 25, 313, 97, 941, 34057, 50, 61, 1861, 1229, 773, 59753, 89, 34, 1157, 82, 269, 194, 617, 38069, 55740337, 145, 10513, 11052317, 12215371106849
OFFSET
1,2
COMMENTS
All members of the sequence can be represented as the sum of two relatively prime numbers (A008784). It appears that the sequence is infinite and that all such numbers are present.
LINKS
EXAMPLE
After a(4)=13, the divisors of 13^2+1=170 are 1,2, 5, 10, 17, 34, 85, 170. 1, 2, and 5 have already occurred, so a(5) = 10.
MATHEMATICA
Nest[Append[#, Min[Complement[Divisors[#[[-1]]^2 + 1], #]]] &, {1}, 45] (* Ivan Neretin, Sep 03 2015 *)
PROG
(PARI) invec(v, x, n)=for(i=1, n, if(v[i]==x, return(1))); 0
bl(n)={local(v, d, ds);
v=vector(n, i, 1);
for(i=2, n,
ds=divisors(v[i-1]^2+1);
for(k=2, #ds, d=ds[k]; if(!invec(v, d, i-1), v[i]=d; break)));
v}
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved