The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 13 19:11 EDT 2024. Contains 372522 sequences. (Running on oeis4.)