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.

A330511 Expansion of e.g.f. Sum_{k>=1} arctan(x^k).

Original entry on oeis.org

1, 2, 4, 24, 144, 480, 4320, 40320, 282240, 4354560, 36288000, 319334400, 6706022400, 74724249600, 1046139494400, 20922789888000, 376610217984000, 4979623993344000, 115242726703104000, 2919482409811968000, 29194824098119680000
Offset: 1

Views

Author

Ilya Gutkovskiy, Dec 16 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 21; CoefficientList[Series[Sum[ArcTan[x^k], {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]! // Rest
    Table[(n - 1)! DivisorSum[n, (-1)^((n/# - 1)/2) # &, OddQ[n/#] &], {n, 1, 21}]
  • PARI
    a(n) = (n-1)!*sumdiv(n, d, if (n/d % 2, (-1)^((n/d - 1)/2)*d)); \\ Michel Marcus, Dec 17 2019

Formula

E.g.f.: Sum_{i>=1} Sum_{j>=1} (-1)^(j + 1) * x^(i*(2*j - 1)) / (2*j - 1).
a(n) = (n - 1)! * Sum_{d|n, n/d odd} (-1)^((n/d - 1)/2) * d.