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.

A343514 a(n) = Sum_{k=1..n} (k/gcd(n, k))^4.

Original entry on oeis.org

1, 2, 18, 84, 355, 645, 2276, 3192, 7413, 9400, 25334, 18395, 60711, 52747, 88760, 106688, 243849, 137790, 432346, 275570, 499867, 522513, 1151404, 561415, 1542125, 1214436, 1907502, 1569673, 3756719, 1344999, 5274000, 3451216, 4970577, 4690778, 7499154, 4217504, 12948595, 8207261, 11565572
Offset: 1

Views

Author

Ilya Gutkovskiy, Apr 17 2021

Keywords

Crossrefs

Programs

  • Mathematica
    Table[Sum[(k/GCD[n, k])^4, {k, 1, n}], {n, 1, 39}]
  • PARI
    a(n) = sum(k=1, n, (k/gcd(n, k))^4); \\ Michel Marcus, Apr 17 2021

Formula

a(n) = Sum_{d|n} A053820(d).