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!)
A286682 a(n) = A059784(n+1) - A059784(n)^2 0
1, 4, 12, 4, 22, 12, 114, 4, 138, 142, 2956, 6388, 5248 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This sequence relates to A059784 just like A108739 relates to the Mills primes A051254.
That this leads to a Mills-like real constant C such that floor(C^2^n) is a prime number for any natural number n, requires a proof of Legendre's conjecture that there is always a prime between consecutive perfect squares.
LINKS
EXAMPLE
A059784(8) by construction can be written ((((((2^2 + 1)^2 + 4)^2 + 12)^2 + 4)^2 + 22)^2 + 12)^2 + 114. Taking out the addends gives 1, 4, 12, 4, 22, 12, 114 which lists the first seven terms of this sequence.
MATHEMATICA
Map[#2 - #1^2 & @@ # &, Partition[NestList[NextPrime[#^2] &, 2, 12], 2, 1]] (* Michael De Vlieger, May 12 2017 *)
PROG
(PARI) p=2; while(1, a=nextprime(p^2); print1(a-p^2, ", "); p=a)
CROSSREFS
Sequence in context: A224512 A010296 A084351 * A262621 A255289 A348334
KEYWORD
more,hard,nonn
AUTHOR
Jeppe Stig Nielsen, May 12 2017
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 April 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)