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!)
A171447 Numbers n such that n+1 is prime, and (n+1)^3-n^3 is prime. 1
1, 2, 4, 6, 10, 28, 30, 42, 52, 58, 66, 88, 108, 136, 156, 172, 196, 238, 312, 346, 352, 388, 448, 520, 546, 556, 570, 576, 598, 612, 646, 676, 732, 742, 786, 856, 906, 940, 976, 1050, 1068, 1092, 1152, 1192, 1222, 1228, 1236, 1302, 1432, 1452, 1458, 1480 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A165682(n)-1. - R. J. Mathar, Jan 04 2011
EXAMPLE
for n=10, 10+1=11 and 11^3-10^3=331; n=28, 28+1=29 and 29^3-28^3=2437
MATHEMATICA
Select[Range[1500], PrimeQ[# + 1]&&PrimeQ[(# + 1)^3 - #^3]&] (* Vincenzo Librandi, Apr 05 2013 *)
PROG
(Magma) [n: n in [1..1500] | IsPrime(n+1) and IsPrime( (n+1)^3-n^3)]; // Vincenzo Librandi, Apr 05 2013
(PARI) is(n)=isprime(n+1) && isprime(3*n^3+3*n+1) \\ Charles R Greathouse IV, Jun 13 2017
CROSSREFS
Cf. A165682.
Sequence in context: A164143 A095007 A005194 * A207667 A085809 A073308
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 09 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 24 06:52 EDT 2024. Contains 371920 sequences. (Running on oeis4.)