login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A357238 Inverse Moebius transform of tribonacci numbers (A000073). 1
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
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).
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
PROG
(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
CROSSREFS
Sequence in context: A000624 A244703 A232801 * A056514 A151517 A219043
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Sep 19 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 11:02 EDT 2024. Contains 371779 sequences. (Running on oeis4.)