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 August 20 22:00 EDT 2024. Contains 375340 sequences. (Running on oeis4.)