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”).

A174321
Index of the smallest prime greater than (6n+1)^2.
1
1, 16, 40, 73, 115, 163, 220, 284, 358, 435, 520, 610, 706, 812, 924, 1039, 1164, 1295, 1424, 1573, 1716, 1878, 2033, 2191, 2367, 2548, 2730, 2916, 3108, 3303, 3513, 3732, 3946, 4165, 4397, 4628, 4858, 5107, 5357, 5612, 5883, 6148, 6415, 6685, 6961, 7253
OFFSET
1,2
EXAMPLE
a(1)=1 because prime(1) > (6*0 + 1)^2;
a(2)=16 because prime(16) > (6*1+1)^2 > prime(15);
a(3)=40 because prime(40) > (6*2+1)^2 > prime(39).
MAPLE
A174321 := proc(n) numtheory[pi](nextprime((6*n+1)^2)) ; end proc: seq(A174321(n), n=0..80) ; # R. J. Mathar, Mar 29 2010
CROSSREFS
Cf. A016922.
Sequence in context: A247345 A332519 A177723 * A258258 A086046 A184030
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
Definition corrected by Charles R Greathouse IV, Mar 20 2010
STATUS
approved