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.

A357238 Inverse Moebius transform of tribonacci numbers (A000073).

Original entry on oeis.org

0, 1, 1, 3, 4, 9, 13, 27, 45, 86, 149, 285, 504, 941, 1710, 3163, 5768, 10662, 19513, 35978, 66026, 121565, 223317, 411053, 755480, 1390042, 2555802, 4701713, 8646064, 15904390, 29249425, 53801243, 98950246, 182003370, 334745794, 615704412, 1132436852, 2082895617, 3831006934
Offset: 1

Views

Author

Ilya Gutkovskiy, Sep 19 2022

Keywords

Crossrefs

Programs

  • Mathematica
    nmax = 39; CoefficientList[Series[Sum[x^(2 k)/(1 - x^k - x^(2 k) - x^(3 k)), {k, 1, nmax}], {x, 0, nmax}], x] // Rest
  • PARI
    f(n) = ([0, 1, 0; 0, 0, 1; 1, 1, 1]^n)[1, 3]; \\ A000073
    a(n) = sumdiv(n, d, f(d)); \\ Michel Marcus, Sep 20 2022

Formula

G.f.: Sum_{k>=1} x^(2*k) / (1 - x^k - x^(2*k) - x^(3*k)).
G.f.: Sum_{k>=1} A000073(k) * x^k / (1 - x^k).
a(n) = Sum_{d|n} A000073(d).
Showing 1-1 of 1 results.