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

A281510
a(n) = n! * Sum_{k=1..n} A008836(k)/k.
1
1, 1, 1, 10, 26, 276, 1212, 4656, 82224, 1185120, 9407520, 72973440, 469653120, 12802164480, 279210758400, 5775046502400, 77253000652800, 1034866583654400, 13260091383705600, 143556727265280000, 5447593280747520000, 170937994348154880000
OFFSET
1,4
LINKS
MATHEMATICA
f[n_] := n!*Sum[(-1)^PrimeOmega[k]/k, {k, n}]; Array[f, 22] (* Robert G. Wilson v, Apr 13 2017 *)
PROG
(PARI) a(n) = n! * sum(k=1, n, (-1)^bigomega(k)/k);
CROSSREFS
Sequence in context: A235053 A217583 A301606 * A024168 A043107 A039284
KEYWORD
nonn
AUTHOR
Daniel Suteu, Apr 13 2017
STATUS
approved