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!)
A154432 Numbers k such that 5k^2-k+1 is prime. 2
1, 2, 3, 7, 8, 9, 10, 12, 14, 17, 19, 22, 24, 29, 33, 35, 42, 43, 50, 52, 57, 58, 65, 68, 72, 73, 75, 77, 94, 99, 105, 107, 117, 119, 120, 124, 129, 138, 140, 143, 155, 162, 178, 184, 187, 189, 190, 194, 199, 204, 208, 210, 219, 220, 229, 245, 248, 250, 252, 254, 255 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
The associated primes are p=5 for n=1, p=19 for n=2, p=43 for n=3, p=239 for n=7.
MAPLE
for n from 1 to 3000 do p := 5*n^2-n+1 ; if isprime(p) then printf("%d, ", n) ; fi; od: # R. J. Mathar, Jan 12 2009
MATHEMATICA
Select[Range[0, 300], PrimeQ[5*#^2 -# +1]&] (* Vincenzo Librandi, Sep 24 2012 *)
PROG
(Magma) [n: n in [0..300] | IsPrime(5*n^2 - n + 1)]; // Vincenzo Librandi, Sep 24 2012
(PARI) is(n)=isprime(5*n^2-n+1) \\ Charles R Greathouse IV, Sep 24 2012
CROSSREFS
Cf. A154431.
Sequence in context: A326874 A118374 A344624 * A251391 A047361 A037461
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Jan 09 2009
EXTENSIONS
114 removed; extended by R. J. Mathar, Jan 12 2009
Misleading formula removed by R. J. Mathar, Jul 24 2009
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)