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.

A326400 Expansion of Sum_{k>=1} k * x^(2*k) / (1 - x^(3*k)).

Original entry on oeis.org

0, 1, 0, 2, 1, 3, 0, 5, 0, 7, 1, 6, 0, 8, 3, 10, 1, 9, 0, 15, 0, 13, 1, 15, 5, 14, 0, 16, 1, 21, 0, 21, 3, 19, 8, 18, 0, 20, 0, 35, 1, 24, 0, 27, 9, 25, 1, 30, 0, 36, 3, 28, 1, 27, 16, 40, 0, 31, 1, 45, 0, 32, 0, 42, 14, 39, 0, 39, 3, 56, 1, 45, 0, 38, 15, 40, 8, 42, 0, 71
Offset: 1

Views

Author

Ilya Gutkovskiy, Sep 11 2019

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 80; CoefficientList[Series[Sum[k x^(2 k)/(1 - x^(3 k)), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
    Table[DivisorSum[n, # &, MemberQ[{2}, Mod[n/#, 3]] &], {n, 1, 80}]

Formula

a(n) = Sum_{d|n, n/d==2 (mod 3)} d.
G.f.: Sum_{k>0} x^(3*k-1) / (1 - x^(3*k-1))^2. - Seiichi Manyama, Jun 29 2023