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.

Showing 1-1 of 1 results.

A372665 a(n) = Sum_{j=1..n} Sum_{k=1..n} phi(2*j*k) / phi(j*k).

Original entry on oeis.org

1, 7, 14, 28, 41, 63, 82, 112, 137, 175, 206, 252, 289, 343, 386, 448, 497, 567, 622, 700, 761, 847, 914, 1008, 1081, 1183, 1262, 1372, 1457, 1575, 1666, 1792, 1889, 2023, 2126, 2268, 2377, 2527, 2642, 2800, 2921, 3087, 3214, 3388, 3521, 3703, 3842, 4032, 4177, 4375
Offset: 1

Views

Author

Seiichi Manyama, May 09 2024

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[Sum[EulerPhi[2*j*k]/EulerPhi[j*k], {j, 1, n}], {k, 1, n}], {n, 1, 50}] (* Vaclav Kotesovec, May 09 2024 *)
  • PARI
    a(n) = sum(j=1, n, sum(k=1, n, eulerphi(2*j*k)/eulerphi(j*k)));
Showing 1-1 of 1 results.