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 A351815 #10 Aug 07 2023 08:31:26 %S A351815 1,1,2,9,53,386,3422,35300,412084,5364255,76952267,1203835714, %T A351815 20362911276,369906504888,7175947738672,147944905766929, %U A351815 3227970924123268,74264452788294013,1795825803391367571,45514495928632484735,1205981001167335524448,33331235326744168532151 %N A351815 G.f. A(x) satisfies A(x) = 1 + x * A(x/(1 - x)^5) / (1 - x). %H A351815 Seiichi Manyama, <a href="/A351815/b351815.txt">Table of n, a(n) for n = 0..452</a> %F A351815 a(0) = 1; a(n) = Sum_{k=0..n-1} binomial(n+4*k-1,n-k-1) * a(k). %t A351815 nmax = 21; A[_] = 0; Do[A[x_] = 1 + x A[x/(1 - x)^5]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x] %t A351815 a[0] = 1; a[n_] := a[n] = Sum[Binomial[n + 4 k - 1, n - k - 1] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 21}] %Y A351815 Cf. A000110, A125273, A351813, A351814. %K A351815 nonn %O A351815 0,3 %A A351815 _Ilya Gutkovskiy_, Feb 20 2022