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 A329802 #4 Nov 21 2019 22:16:17 %S A329802 1,1,2,6,19,64,219,777,2803,10315,38496,145516,555764,2142060,8320207, %T A329802 32538518,128012533,506300507,2011932479,8028941336,32163411045, %U A329802 129291553211,521372223648,2108522273338,8549844313915,34753397386201,141584261960345 %N A329802 G.f. A(x) satisfies: A(x) = 1 / (1 - x * Product_{k>=1} A(x^k)). %t A329802 nmax = 26; A[_] = 0; Do[A[x_] = 1/(1 - x Product[A[x^k], {k, 1, nmax}]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %Y A329802 Cf. A050383, A091865. %K A329802 nonn %O A329802 0,3 %A A329802 _Ilya Gutkovskiy_, Nov 21 2019