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.

A321563 a(n) = Sum_{d divides n} (-1)^(d + n/d) * d^7.

Original entry on oeis.org

1, -129, 2188, -16257, 78126, -282252, 823544, -2080641, 4785157, -10078254, 19487172, -35570316, 62748518, -106237176, 170939688, -266321793, 410338674, -617285253, 893871740, -1270094382, 1801914272, -2513845188, 3404825448, -4552442508
Offset: 1

Views

Author

N. J. A. Sloane, Nov 23 2018

Keywords

Crossrefs

Column k=7 of A322083.
Cf. A321543 - A321565, A321807 - A321836 for similar sequences.

Programs

  • Mathematica
    a[n_] := DivisorSum[n, (-1)^(# + n/#)*#^7 &]; Array[a, 25] (* Amiram Eldar, Nov 22 2022 *)
  • PARI
    apply( A321563(n)=sumdiv(n, d, (-1)^(n\d-d)*d^7), [1..30]) \\ M. F. Hasler, Nov 26 2018

Formula

G.f.: Sum_{k>=1} (-1)^(k+1)*k^7*x^k/(1 + x^k). - Ilya Gutkovskiy, Dec 22 2018
Multiplicative with a(2^e) = -3*(21*2^(7*e+1) + 85)/127, and a(p^e) = (p^(7*e+7) - 1)/(p^7 - 1) for p > 2. - Amiram Eldar, Nov 22 2022