[go: up one dir, main page]

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

A372638
a(n) = (1/6) * Sum_{k=1..n} phi(7*k).
1
1, 2, 4, 6, 10, 12, 19, 23, 29, 33, 43, 47, 59, 66, 74, 82, 98, 104, 122, 130, 144, 154, 176, 184, 204, 216, 234, 248, 276, 284, 314, 330, 350, 366, 394, 406, 442, 460, 484, 500, 540, 554, 596, 616, 640, 662, 708, 724, 773, 793, 825, 849, 901, 919, 959, 987, 1023
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Totient Function.
FORMULA
a(n) ~ (49/(16*Pi^2)) * n^2. - Amiram Eldar, May 08 2024
MATHEMATICA
Accumulate[Table[EulerPhi[7*n], {n, 1, 60}]]/6 (* Amiram Eldar, May 08 2024 *)
PROG
(PARI) a(n) = sum(k=1, n, eulerphi(7*k))/6;
CROSSREFS
Column k=7 of A372619.
Partial sums of A359102.
Cf. A000010.
Sequence in context: A339736 A064374 A000885 * A068336 A293821 A194944
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 08 2024
STATUS
approved