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!)
A120396 a(1) is the least k such that p(1) = (k*17)^2 + k*17 - 1 is prime, then a(n+1) is the least k such that (k*p(n))^2 + k*p(n) - 1 = p(n+1) is prime. 3
4, 4, 1, 46, 51, 197, 216, 225, 366, 1862, 3806, 116 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The p(n) sequence starts 4691, 352106459, 123978958821625139, ...
LINKS
EXAMPLE
a(1) = 4 as (4*17)^2 + 4*17 - 1 = 4691 = p(1) is prime.
MATHEMATICA
f[0] = {0, 17}; f[n_] := f[n] = Module[{k = 1, p = f[n - 1][[2]]}, While[! PrimeQ[(k*p)^2 + k*p - 1], k++]; {k, (k*p)^2 + k*p - 1}]; Table[f[n][[1]], {n, 1, 10}] (* Amiram Eldar, Aug 28 2021 *)
CROSSREFS
Sequence in context: A136214 A067328 A111845 * A141024 A173210 A328922
KEYWORD
nonn
AUTHOR
Pierre CAMI, Jul 01 2006
EXTENSIONS
a(9)-a(12) from Amiram Eldar, Aug 28 2021
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 16:56 EDT 2024. Contains 371962 sequences. (Running on oeis4.)