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

A108972
a(1) = 1; for n > 1, a(n) is the least k > a(n-1) such that a(n) + a(n-1) is square and a(n) - a(n-1) is prime.
0
1, 3, 6, 19, 30, 91, 134, 307, 318, 1051, 1158, 1867, 2358, 2971, 3590, 3979, 4670, 5131, 5478, 7747, 7878, 8251, 8390, 16891, 17334, 22267, 28358, 30691, 31310, 36811, 37718, 61507, 64518, 70171, 70454, 74707, 76614, 79411, 79790, 89131
OFFSET
1,2
EXAMPLE
Given a(5) = 30, the least k > 30 such that k + 30 is square and k - 30 is prime is 91 (91 + 30 = 121 = 11^2; and 91 - 30 = 61 is prime), so a(6) = 91.
MATHEMATICA
a = 1; Print[a]; Do[k = a + 1; While[ !(PrimeQ[k - a] && IntegerQ[Sqrt[k + a]]), k++ ]; a = k; Print[a], {n, 1, 30}]
CROSSREFS
Cf. A090956.
Sequence in context: A294570 A306968 A090956 * A304965 A203797 A019097
KEYWORD
nonn
AUTHOR
Ryan Propper, Aug 27 2005
EXTENSIONS
More terms from Robert G. Wilson v, Sep 28 2005
STATUS
approved