The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A345141 a(1) = 1, a(2) = 0; a(n+2) = Sum_{d|n} a(d). 4
1, 0, 1, 1, 2, 2, 3, 4, 4, 6, 6, 9, 7, 14, 8, 18, 12, 24, 13, 32, 14, 42, 19, 49, 20, 67, 23, 75, 29, 94, 30, 114, 31, 138, 39, 151, 45, 193, 46, 207, 55, 253, 56, 288, 57, 338, 73, 358, 74, 443, 78, 472, 92, 548, 93, 603, 102, 701, 117, 731, 118, 887, 119, 918, 142, 1056, 152, 1139, 153, 1291 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
G.f. A(x) satisfies: A(x) = x + x^2 * (A(x) + A(x^2) + A(x^3) + ...).
MATHEMATICA
a[1] = 1; a[2] = 0; a[n_] := a[n] = Sum[a[d], {d, Divisors[n - 2]}]; Table[a[n], {n, 1, 70}]
nmax = 70; A[_] = 0; Do[A[x_] = x + x^2 Sum[A[x^k], {k, 1, nmax}] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
CROSSREFS
Sequence in context: A138374 A029936 A114093 * A239950 A077768 A143038
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 09 2021
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 June 2 21:38 EDT 2024. Contains 373051 sequences. (Running on oeis4.)