cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A183145 G.f.: Sum_{n>=0} [Sum_{k=0..n} C(n,k)^3*x^k]^2 * x^n.

This page as a plain text file.
%I A183145 #8 Mar 12 2022 13:25:18
%S A183145 1,1,3,18,121,928,6240,46617,360997,2889223,23635458,195429765,
%T A183145 1643489944,13988813548,120403750665,1045933596357,9158182856203,
%U A183145 80773120032142,716955897008481,6400569497637804,57436282624514236
%N A183145 G.f.: Sum_{n>=0} [Sum_{k=0..n} C(n,k)^3*x^k]^2 * x^n.
%e A183145 G.f.: A(x) = 1 + x + 3*x^2 + 18*x^3 + 121*x^4 + 928*x^5 + 6240*x^6 +...
%e A183145 which equals the sum of the series:
%e A183145 A(x) = 1 + (1 + x)^2*x + (1 + 2^3*x + x^2)^2*x^2
%e A183145 + (1 + 3^3*x + 3^3*x^2 + x^3)^2*x^3
%e A183145 + (1 + 4^3*x + 6^3*x^2 + 4^3*x^3 + x^4)^2*x^4
%e A183145 + (1 + 5^3*x + 10^3*x^2 + 10^3*x^3 + 5^3*x^4 + x^5)^2*x^5
%e A183145 + (1 + 6^3*x + 15^3*x^2 + 20^3*x^3 + 15^3*x^4 + 6^3*x^5 + x^6)^2*x^6 +...
%o A183145 (PARI) {a(n)=polcoeff(sum(m=0,n,sum(k=0,m,binomial(m,k)^3*x^k)^2*x^m)+x*O(x^n),n)}
%Y A183145 Cf. A183146.
%K A183145 nonn
%O A183145 0,3
%A A183145 _Paul D. Hanna_, Dec 26 2010