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”).

A071546
Smallest integer > 1 of the form (k^2+1)/(n^2+1).
0
5, 2, 5, 10, 17, 26, 37, 5, 65, 82, 101, 2, 13, 170, 197, 226, 61, 10, 325, 362, 5, 61, 13, 530, 577, 626, 41, 149, 785, 65, 73, 17, 149, 146, 1157, 1226, 41, 74, 1445, 1522, 1601, 317, 397, 373, 1937, 221, 97, 74, 2305, 26, 2501, 130, 493, 2810, 5, 3026, 29
OFFSET
1,1
FORMULA
a(n)=(A065876(n)^2+1)/(n^2+1)
PROG
(PARI) for(n=1, 70, s=n+1; while((s^2+1)%(n^2+1)>0, s++); print1((s^2+1)/(n^2+1), ", "))
CROSSREFS
Cf. A065876.
Sequence in context: A236184 A201530 A085997 * A378873 A154649 A100040
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 30 2002
STATUS
approved