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.

A372622 a(n) = (1/4) * Sum_{k=1..n} phi(5*k).

Original entry on oeis.org

1, 2, 4, 6, 11, 13, 19, 23, 29, 34, 44, 48, 60, 66, 76, 84, 100, 106, 124, 134, 146, 156, 178, 186, 211, 223, 241, 253, 281, 291, 321, 337, 357, 373, 403, 415, 451, 469, 493, 513, 553, 565, 607, 627, 657, 679, 725, 741, 783, 808, 840, 864, 916, 934, 984, 1008, 1044
Offset: 1

Views

Author

Seiichi Manyama, May 07 2024

Keywords

Crossrefs

Partial sums of A359101.
Column k=5 of A372619.
Cf. A000010.

Programs

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

Formula

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