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

A344573
a(n) = Sum_{d|n} phi(d!).
0
1, 2, 3, 10, 33, 196, 1153, 9226, 82947, 829474, 8294401, 99533004, 1194393601, 16721511554, 250822656035, 4013162505226, 64210599936001, 1155790798931140, 20804234379264001, 416084687586109482, 8737778439290881155, 192231125664407654402, 4229084764616785920001
OFFSET
1,2
EXAMPLE
a(6) = Sum_{d|6} phi(d!) = phi(1!) + phi(2!) + phi(3!) + phi(6!) = 1 + 1 + 2 + 192 = 196.
MATHEMATICA
Table[Sum[EulerPhi[k!] (1 - Ceiling[n/k] + Floor[n/k]), {k, n}], {n, 30}]
CROSSREFS
Cf. A000010 (phi).
Sequence in context: A364208 A358895 A057146 * A300127 A059735 A358213
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, May 23 2021
STATUS
approved