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!)
A225294 G.f. satisfies: A(x) = Sum_{n>=0} x^n / Product_{k=1..n} (1 - k*x*A(x)). 4
1, 1, 2, 6, 22, 92, 424, 2112, 11236, 63360, 376800, 2355016, 15430784, 105797968, 757866592, 5664174736, 44109816528, 357447744576, 3010091812000, 26304829992224, 238217024498432, 2232483865359488, 21621812897089536, 216130222764401024, 2226983944005048960 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
It appears that all terms a(n) for n>1 are even.
LINKS
FORMULA
G.f. satisfies: A(x) = Sum_{n>=0} x^n * Sum_{k=0..n} Stirling2(n,k)*A(x)^(n-k).
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 22*x^4 + 92*x^5 + 424*x^6 + 2112*x^7 +...
where
A(x) = 1 + x/(1-x*A(x)) + x^2/((1-x*A(x))*(1-2*x*A(x))) + x^3/((1-x*A(x))*(1-2*x*A(x))*(1-3*x*A(x))) + x^4/((1-x*A(x))*(1-2*x*A(x))*(1-3*x*A(x))*(1-4*x*A(x))) +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=sum(m=0, n, x^m/prod(k=1, m, 1-k*x*A +x*O(x^n)) )); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)}
{a(n)=local(A=1+x); for(i=0, n, A=sum(m=0, n, x^m*sum(k=0, m, Stirling2(m, k)*(A+x*O(x^n))^(m-k)))); polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A107945 A279571 A014330 * A124294 A124295 A074664
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 04 2013
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 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)