login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A200915
Primes of the form 7n^3-1.
1
1511, 3583, 19207, 40823, 123031, 188999, 774143, 1229311, 1511999, 2012471, 3583999, 4148927, 4452391, 6588343, 7874047, 10370807, 14002631, 14680063, 34390999, 40823999, 45043991, 82966463, 89690327, 114709447, 150394663
OFFSET
1,1
LINKS
MATHEMATICA
Select[Table[7n^3-1, {n, 1, 3500}], PrimeQ]
PROG
(Magma) [a: n in [1..400] | IsPrime(a) where a is 7*n^3-1]
(PARI) for(n=1, 1e3, if(isprime(t=7*n^3-1), print1(t", "))) \\ Charles R Greathouse IV, Nov 24 2011
CROSSREFS
Sequence in context: A281569 A252553 A237725 * A298223 A060676 A230402
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Nov 24 2011
STATUS
approved