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

A178606
Smallest prime > n!! (double factorial of n).
1
2, 3, 5, 11, 17, 53, 107, 389, 947, 3847, 10399, 46091, 135151, 645131, 2027033, 10321937, 34459429, 185794579, 654729139, 3715891217, 13749310577, 81749606417, 316234143227, 1961990553613, 7905853580633, 51011754393671
OFFSET
1,1
MATHEMATICA
PrimeNext[n_]:=Module[{k}, k=n+1; While[ !PrimeQ[k], k++ ]; k]; Table[PrimeNext[n!! ], {n, 40}]
CROSSREFS
Sequence in context: A077497 A237995 A333081 * A097048 A286268 A359630
KEYWORD
nonn
AUTHOR
STATUS
approved