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 A307529 #6 Apr 13 2019 08:09:47 %S A307529 1,0,0,1,0,1,4,1,10,23,18,92,168,241,856,1480,2904,8266,14854,33496, %T A307529 83578,161047,380488,884326,1819714,4321045,9730466,21019404,49456092, %U A307529 110408981,246005440,572574553,1281705752,2906696339,6711882928,15128432758,34625418170 %N A307529 G.f. A(x) satisfies: A(x) = (1 - x^2*A(x)^2)/(1 - x^2*A(x)^2 - x^3*A(x)^3). %F A307529 G.f. A(x) satisfies: A(x) = Sum_{k>=0} A000931(k)*x^k*A(x)^k. %F A307529 G.f.: A(x) = (1/x)*Series_Reversion(x*(1 - x^2 - x^3)/(1 - x^2)). %e A307529 G.f.: A(x) = 1 + x^3 + x^5 + 4*x^6 + x^7 + 10*x^8 + 23*x^9 + 18*x^10 + 92*x^11 + 168*x^12 + ... %t A307529 terms = 37; CoefficientList[1/x InverseSeries[Series[x (1 - x^2 - x^3)/(1 - x^2), {x, 0, terms}], x], x] %t A307529 terms = 36; A[_] = 0; Do[A[x_] = (1 - x^2 A[x]^2)/(1 - x^2 A[x]^2 - x^3 A[x]^3) + O[x]^(terms + 1) // Normal, {terms + 1}]; CoefficientList[A[x], x] %t A307529 terms = 37; p[n_] := p[n] = SeriesCoefficient[(1 - x^2)/(1 - x^2 - x^3), {x, 0, n}]; A[_] = 1; Do[A[x_] = Sum[p[k] x^k A[x]^k, {k, 0, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x] %Y A307529 Cf. A000931, A049124, A049140, A067955, A307411, A307412, A307413, A307528. %K A307529 nonn %O A307529 0,7 %A A307529 _Ilya Gutkovskiy_, Apr 12 2019