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

A372621
a(n) = (1/2) * Sum_{k=1..n} phi(3*k).
2
1, 2, 5, 7, 11, 14, 20, 24, 33, 37, 47, 53, 65, 71, 83, 91, 107, 116, 134, 142, 160, 170, 192, 204, 224, 236, 263, 275, 303, 315, 345, 361, 391, 407, 431, 449, 485, 503, 539, 555, 595, 613, 655, 675, 711, 733, 779, 803, 845, 865, 913, 937, 989, 1016, 1056, 1080, 1134
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Totient Function.
FORMULA
a(n) ~ (27/(8*Pi^2)) * n^2. - Amiram Eldar, May 08 2024
MATHEMATICA
Accumulate[Table[EulerPhi[3*n], {n, 1, 60}]]/2 (* Amiram Eldar, May 08 2024 *)
PROG
(PARI) a(n) = sum(k=1, n, eulerphi(3*k))/2;
CROSSREFS
Equals A194881 - 1.
Partial sums of A195459.
Column k=3 of A372619.
Sequence in context: A191175 A191125 A001225 * A157001 A134640 A216094
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 07 2024
STATUS
approved