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!)
A345232 G.f. A(x) satisfies: A(x) = x + x^2 / exp(A(x) + A(x^2)/2 + A(x^3)/3 + A(x^4)/4 + ...). 1
1, 1, -1, -1, 2, 0, -4, 3, 7, -12, -8, 35, -6, -87, 84, 172, -367, -187, 1175, -417, -3003, 3621, 5723, -15126, -4374, 47813, -26192, -119731, 175835, 211797, -699210, -57982, 2148031, -1601079, -5161935, 9125489, 8093890, -34478125, 3997517, 101971205, -97182026 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
LINKS
FORMULA
G.f.: x + x^2 * Product_{n>=1} (1 - x^n)^a(n).
a(n+2) = -(1/n) * Sum_{k=1..n} ( Sum_{d|k} d * a(d) ) * a(n-k+2).
MAPLE
a:= proc(n) option remember; `if`(n<3, 1, -add(add(a(n-k)*
d*a(d), d=numtheory[divisors](k)), k=1..n-2)/(n-2))
end:
seq(a(n), n=1..42); # Alois P. Heinz, Jun 11 2021
MATHEMATICA
nmax = 41; A[_] = 0; Do[A[x_] = x + x^2 Exp[Sum[-A[x^k]/k, {k, 1, nmax}]] + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] // Rest
a[1] = a[2] = 1; a[n_] := a[n] = -(1/(n - 2)) Sum[Sum[d a[d], {d, Divisors[k]}] a[n - k], {k, 1, n - 2}]; Table[a[n], {n, 1, 41}]
CROSSREFS
Sequence in context: A243488 A154849 A339261 * A277333 A248663 A335426
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jun 11 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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)