cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A372621 a(n) = (1/2) * Sum_{k=1..n} phi(3*k).

Original entry on oeis.org

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

Views

Author

Seiichi Manyama, May 07 2024

Keywords

Crossrefs

Equals A194881 - 1.
Partial sums of A195459.
Column k=3 of A372619.

Programs

  • Mathematica
    Accumulate[Table[EulerPhi[3*n], {n, 1, 60}]]/2 (* Amiram Eldar, May 08 2024 *)
  • PARI
    a(n) = sum(k=1, n, eulerphi(3*k))/2;

Formula

a(n) ~ (27/(8*Pi^2)) * n^2. - Amiram Eldar, May 08 2024