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!)
A227821 G.f.: 1/(1-x) = Sum_{n>=0} a(n) * x^n/(1-x)^n * Sum_{k=0..n} binomial(n,k)^2 * (-x)^k. 1
1, 1, 1, 3, 23, 319, 6857, 209259, 8563855, 451423559, 29740026091, 2391941092881, 230478978551687, 26197466746328951, 3467374262207936333, 528520864124393733623, 91899269489447224280211, 18078003975588275698610731, 3994026796748854058413543011, 984658830428133667413074092081 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
EXAMPLE
1/(1-x) = 1 + x*(1-x)/(1-x)
+ x^2*(1 - 2^2*x + x^2)/(1-x)^2
+ 3*x^3*(1 - 3^2*x + 3^2*x^2 - x^3)/(1-x)^3
+ 23*x^4*(1 - 4^2*x + 6^2*x^2 - 4^2*x^3 + x^4)/(1-x)^4
+ 319*x^5*(1 - 5^2*x + 10^2*x^2 - 10^2*x^3 + 5^2*x^4 - x^5)/(1-x)^5
+ 6857*x^6*(1 - 6^2*x + 15^2*x^2 - 20^2*x^3 + 15^2*x^4 - 6^2*x^5 + x^6)/(1-x)^6 +...
PROG
(PARI)
{a(n)=if(n==0, 1, 1-polcoeff(sum(k=0, n-1, a(k)*x^k*sum(j=0, k, binomial(k, j)^2*(-x)^j)/(1-x+x*O(x^n))^k), n))}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Cf. A227820.
Sequence in context: A356872 A088692 A188313 * A222076 A338301 A129458
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 31 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 May 13 03:04 EDT 2024. Contains 372497 sequences. (Running on oeis4.)