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!)
A307994 G.f. A(x) satisfies: A(x) = x + x^2 + x^3 + x^4 * (1 + A(x) + A(x^2) + A(x^3) + ...). 4
1, 1, 1, 1, 1, 2, 2, 3, 2, 5, 3, 6, 4, 8, 4, 12, 5, 12, 7, 18, 6, 19, 8, 27, 10, 24, 9, 42, 12, 30, 13, 55, 13, 45, 14, 73, 18, 52, 18, 99, 19, 61, 24, 129, 20, 82, 25, 154, 29, 92, 26, 208, 32, 110, 33, 239, 33, 138, 38, 297, 42, 152, 39, 367, 43, 167, 51, 440, 49, 207, 52, 493, 59, 239 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
Shifts left 4 places under inverse Moebius transform.
LINKS
FORMULA
G.f.: x + x^2 + x^3 + x^4 * (1 + Sum_{n>=1} a(n)*x^n/(1 - x^n)).
a(1) = ... = a(4) = 1; a(n+4) = Sum_{d|n} a(d).
MATHEMATICA
terms = 74; A[_] = 0; Do[A[x_] = x + x^2 + x^3 + x^4 (1 + Sum[A[x^k], {k, 1, terms}]) + O[x]^(terms + 1) // Normal, terms + 1]; Rest[CoefficientList[A[x], x]]
a[n_] := a[n] = SeriesCoefficient[x + x^2 + x^3 + x^4 (1 + Sum[a[k] x^k/(1 - x^k), {k, 1, n - 1}]), {x, 0, n}]; Table[a[n], {n, 1, 74}]
a[n_] := a[n] = Sum[a[d], {d, Divisors[n - 4]}]; a[1] = a[2] = a[3] = a[4] = 1; Table[a[n], {n, 1, 74}]
CROSSREFS
Sequence in context: A078773 A151663 A162753 * A238480 A111089 A051664
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, May 09 2019
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 July 3 14:23 EDT 2024. Contains 373982 sequences. (Running on oeis4.)