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

A288413
Primes of the form k!2+1024, where k!2 is the double factorial number (A006852).
1
1039, 1129, 13749311599, 6332659870762851649, 1408316897580354679543222894676508168024833284165925995774150107832775465649821970462037757921294414350725483019407292942600250244141649
OFFSET
1,1
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 2] + 1024, {i, 0, 100}], PrimeQ[#]&]
CROSSREFS
Cf. A076197.
Sequence in context: A251868 A074673 A235156 * A020395 A069456 A210259
KEYWORD
nonn
AUTHOR
Robert Price, Jun 08 2017
STATUS
approved