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.

A326599 G.f.: Sum_{n>=0} x^n * (1 + x^n)^n / (1 - x*(1 + x^n))^(n+1).

This page as a plain text file.
%I A326599 #5 Jul 14 2019 00:03:50
%S A326599 1,3,8,19,44,97,207,432,884,1777,3529,6942,13547,26281,50791,97942,
%T A326599 188677,363489,700953,1354060,2621602,5088832,9905382,19335477,
%U A326599 37848971,74287855,146173721,288280956,569715036,1127957956,2236777539,4441749653,8830819362,17574636239,35005944165,69776276002,139165947494
%N A326599 G.f.: Sum_{n>=0} x^n * (1 + x^n)^n / (1 - x*(1 + x^n))^(n+1).
%e A326599 G.f.: A(x) = 1 + 3*x + 8*x^2 + 19*x^3 + 44*x^4 + 97*x^5 + 207*x^6 + 432*x^7 + 884*x^8 + 1777*x^9 + 3529*x^10 + 6942*x^11 + 13547*x^12 + 26281*x^13 + ...
%e A326599 such that
%e A326599 A(x) = 1/(1-2*x) + x*(1+x)/(1 - x*(1+x))^2 + x^2*(1+x^2)^2/(1 - x*(1+x^2))^3 + x^3*(1+x^3)^3/(1 - x*(1+x^3))^4 + x^4*(1+x^4)^4/(1 - x*(1+x^4))^5  + x^5*(1+x^5)^5/(1 - x*(1+x^5))^6 + x^6*(1+x^6)^6/(1 - x*(1+x^6))^7 + ...
%o A326599 (PARI) {a(n) = my(A = sum(m=0,n, x^m * (1 + x^m +x*O(x^n))^m /(1 - x*(1+x^m)  +x*O(x^n))^(m+1) )); polcoeff(A,n)}
%o A326599 for(n=0,50,print1(a(n),", "))
%Y A326599 Cf. A138247.
%K A326599 nonn
%O A326599 0,2
%A A326599 _Paul D. Hanna_, Jul 13 2019