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

A289754
Primes of the form k!10-1, where k!10 is the decuple factorial number (A288327).
1
2, 3, 5, 7, 23, 199, 239999, 7354367, 719999999, 2287853567, 50399999999, 43193222037503, 199094626418687, 17254743876205585224626400657407, 620448401733239439359999999999999999999999999999, 17999257015554062631539656405422901164857242675052543
OFFSET
1,1
LINKS
MATHEMATICA
MultiFactorial[n_, k_] := If[n<1, 1, n*MultiFactorial[n-k, k]];
Select[Table[MultiFactorial[i, 10] - 1, {i, 2, 100}], PrimeQ[#]&]
CROSSREFS
Cf. A204658.
Sequence in context: A052017 A355804 A277575 * A062088 A343834 A070029
KEYWORD
nonn
AUTHOR
Robert Price, Jul 11 2017
STATUS
approved