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!)
A168550 Natural numbers k for which 1 + 2*k^3 is prime. 8
1, 2, 5, 6, 9, 11, 12, 20, 21, 26, 27, 29, 30, 32, 35, 44, 57, 59, 60, 71, 72, 77, 86, 92, 95, 96, 99, 107, 111, 120, 134, 140, 149, 150, 152, 159, 162, 164, 165, 170, 185, 186, 191, 192, 197, 204, 221, 227, 231, 237, 246, 249, 252, 260, 264, 266, 269, 275, 290, 297 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
20 is a term because 1 + 2*20^3 = 16001 is prime.
MAPLE
isA168550 := proc(n) isprime(1+2*n^3) ; end proc: for n from 1 to 400 do if isA168550(n) then printf("%d, ", n) ; end if; end do: # R. J. Mathar, Nov 30 2009
MATHEMATICA
Select[Range[300], PrimeQ[1+2#^3]&] (* Harvey P. Dale, Jan 13 2022 *)
CROSSREFS
Sequence in context: A049408 A342733 A138970 * A355431 A244737 A285347
KEYWORD
nonn
AUTHOR
EXTENSIONS
Terms beyond 21 from R. J. Mathar, Nov 30 2009
Example corrected by Jon E. Schoenfield, May 11 2019
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 July 23 17:49 EDT 2024. Contains 374553 sequences. (Running on oeis4.)