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

A178614
a(n) = prime(n)!/(n+1)!.
2
1, 1, 5, 42, 55440, 1235520, 8821612800, 335221286400, 7124122778572800, 221504779785446277120000, 17166620433372086476800000, 2210327142511928825790332928000000
OFFSET
1,3
LINKS
FORMULA
a(n) = A039716(n)/A000142(n+2) = A177946(n)/(n+1).
MATHEMATICA
Table[(Prime[n])!/(n+1)!, {n, 1, 15}] (* G. C. Greubel, Jan 29 2019 *)
PROG
(PARI) vector(15, n, (prime(n))!/(n+1)!) \\ G. C. Greubel, Jan 29 2019
(Magma) [Factorial(NthPrime(n))/Factorial(n+1): n in [1..15]]; // G. C. Greubel, Jan 29 2019
(Sage) [factorial(nth_prime(n))/factorial(n+1) for n in (1..15)] # G. C. Greubel, Jan 29 2019
CROSSREFS
Sequence in context: A350930 A368352 A132487 * A360942 A284170 A067927
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(7) and a(9) corrected by R. J. Mathar, Jun 07 2010
STATUS
approved