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

A372637
a(n) = (1/2) * Sum_{k=1..n} phi(6*k).
2
1, 3, 6, 10, 14, 20, 26, 34, 43, 51, 61, 73, 85, 97, 109, 125, 141, 159, 177, 193, 211, 231, 253, 277, 297, 321, 348, 372, 400, 424, 454, 486, 516, 548, 572, 608, 644, 680, 716, 748, 788, 824, 866, 906, 942, 986, 1032, 1080, 1122, 1162, 1210, 1258, 1310, 1364, 1404
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Totient Function.
FORMULA
a(n) ~ (9/(2*Pi^2)) * n^2. - Amiram Eldar, May 08 2024
MATHEMATICA
Accumulate[Table[EulerPhi[6*n], {n, 1, 60}]]/2 (* Amiram Eldar, May 08 2024 *)
PROG
(PARI) a(n) = sum(k=1, n, eulerphi(6*k))/2;
CROSSREFS
Column k=6 of A372619.
Cf. A000010.
Sequence in context: A272058 A244360 A183863 * A140949 A025206 A049989
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 08 2024
STATUS
approved