login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A157473 Primes : if (p-2)^(1/3)-+2 are also primes. 0
2, 127, 91127, 328511, 1157627, 2146691, 12326393, 125751503, 693154127, 751089431, 1033364333, 2102071043, 2222447627, 2893640627, 3314613773, 3951805943, 6591796877, 9063964127, 13464285941, 16406426423, 19880486831 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

COMMENTS

(127-2)^(1/3)-2=3;(127-2)^(1/3)+2=7,...

MATHEMATICA

q=2; lst={}; Do[p=Prime[n]; r=(p-q)^(1/3)-q; u=(p-q)^(1/3)+q; If[PrimeQ[r]&&PrimeQ[u], AppendTo[lst, p]], {n, 4*9!}]; lst

lst = {}; p = 0; While[p < 2955, If[ PrimeQ[p - 2] && PrimeQ[p + 2] && PrimeQ[p^3 + 2], AppendTo[lst, p^3 + 2]]; p++ ]; lst [From Robert G. Wilson v (rgwv(AT)rgwv.com), Mar 08 2009]

CROSSREFS

Cf. A127435, A127436, A157467, A157468

Sequence in context: A092832 A181001 A105761 * A004864 A106319 A106320

Adjacent sequences:  A157470 A157471 A157472 * A157474 A157475 A157476

KEYWORD

nonn

AUTHOR

Vladimir Orlovsky (4vladimir(AT)gmail.com), Mar 01 2009

EXTENSIONS

a(8)-a(21) from Robert G. Wilson v (rgwv(AT)rgwv.com), Mar 08 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 21:51 EST 2012. Contains 205978 sequences.