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.
%I A249929 #6 Feb 07 2025 14:38:12 %S A249929 1,1,6,87,1544,30669,652387,14535220,334846575,7911062633, %T A249929 190635605270,4667362377021,115772752576351,2903222873038115, %U A249929 73481220638826204,1874686187998433232,48159602555272931592,1244712958804985611455,32343121686417402278602,844434166911645229308309 %N A249929 G.f. A(x) satisfies: 1+x = A(x)^3 + A(x)^4 - A(x)^6. %F A249929 G.f.: 1 + Series_Reversion(x - 6*x^2 - 15*x^3 - 14*x^4 - 6*x^5 - x^6). %e A249929 G.f.: A(x) = 1 + x + 6*x^2 + 87*x^3 + 1544*x^4 + 30669*x^5 +... %e A249929 Related expansions. %e A249929 A(x)^3 = 1 + 3*x + 21*x^2 + 298*x^3 + 5280*x^4 + 104772*x^5 +... %e A249929 A(x)^4 = 1 + 4*x + 30*x^2 + 424*x^3 + 7509*x^4 + 148968*x^5 +... %e A249929 A(x)^6 = 1 + 6*x + 51*x^2 + 722*x^3 + 12789*x^4 + 253740*x^5 +... %e A249929 where 1+x = A(x)^3 + A(x)^4 - A(x)^6. %o A249929 (PARI) /* From 1+x = A(x)^3 + A(x)^4 - A(x)^6: */ %o A249929 {a(n)=local(A=[1, 1]); for(i=1, n, A=concat(A, 0); A[#A]=-Vec(Ser(A)^3+Ser(A)^4-Ser(A)^6)[#A]); A[n+1]} %o A249929 for(n=0, 25, print1(a(n) , ", ")) %o A249929 (PARI) /* From Series Reversion: */ %o A249929 {a(n)=local(A=1+serreverse(x - 6*x^2 - 15*x^3 - 14*x^4 - 6*x^5 - x^6 + x^2*O(x^n)));polcoeff(A,n)} %o A249929 for(n=0, 25, print1(a(n) , ", ")) %Y A249929 Cf. A249926, A249927, A249928, A249930, A249931, A249932. %K A249929 nonn %O A249929 0,3 %A A249929 _Paul D. Hanna_, Nov 27 2014