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!)
A113152 a(1) = 2; a(n) is the smallest prime > a(n-1) such that a(n) + a(n-1) is a fourth power. 0
2, 79, 1217, 2879, 7121, 152879, 178897, 12781103, 24233953, 25553183, 29147633, 70852367, 1800921329, 3205490207, 6270364129, 30533756207, 39265770209, 52240479791, 68933130209, 73192853807, 74570506193, 78996293183 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Cf. similar sequences A062064, A062066.
LINKS
EXAMPLE
2+79=3^4, 79+1217=6^4, etc.
MATHEMATICA
a=2; s={a}; Do[p=n^4-a; If[p>a&&PrimeQ[p], AppendTo[s, p]; a=p], {n, 2, 3000}]; s
sp4p[n_]:=Module[{k=NextPrime[n]}, While[!IntegerQ[Surd[n+k, 4]], k = NextPrime[ k]]; k]; NestList[sp4p, 2, 21] (* Harvey P. Dale, Apr 02 2018 *)
PROG
(PARI) print1(s=a=2); for(n=1, 99, until(isprime(s++^4-a), ); print1(", "a=s^4-a)) \\ M. F. Hasler, Oct 03 2010
CROSSREFS
Sequence in context: A342979 A166052 A045484 * A265585 A060051 A100421
KEYWORD
nonn
AUTHOR
Zak Seidov, Jan 04 2006
EXTENSIONS
Edited by Zak Seidov, Sep 28 2010, Oct 03 2010
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 March 28 08:22 EDT 2024. Contains 371236 sequences. (Running on oeis4.)