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

A369119
a(n) = (n + 1)^[is_prime(n + 1)] * n!.
1
1, 2, 6, 6, 120, 120, 5040, 5040, 40320, 362880, 39916800, 39916800, 6227020800, 6227020800, 87178291200, 1307674368000, 355687428096000, 355687428096000, 121645100408832000, 121645100408832000, 2432902008176640000, 51090942171709440000
OFFSET
0,2
FORMULA
a(2*n)*Bernoulli(2*n) = A347425(n).
MATHEMATICA
A369119[n_] := n! If[PrimeQ[n+1], n+1, 1];
Array[A369119, 25, 0] (* Paolo Xausa, Jan 15 2024 *)
PROG
(SageMath)
def A369119(n): return (n+1)^is_prime(n+1)*factorial(n)
CROSSREFS
Cf. A089026, A000142, A347425, A000367/A002445 (Bernoulli(2n)).
Sequence in context: A189144 A367676 A130726 * A279841 A219195 A212223
KEYWORD
nonn
AUTHOR
Peter Luschny, Jan 14 2024
STATUS
approved