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 A344100 #5 May 09 2021 11:17:06 %S A344100 1,1,6,27,92,323,1070,3527,11314,35708,110478,336629,1011097,2997233, %T A344100 8778761,25424358,72867447,206804742,581573340,1621407554,4483701126, %U A344100 12303384015,33514076529,90656680725,243603875523,650444927010,1726229294595,4554686670838,11950683658941 %N A344100 Expansion of Product_{k>=1} (1 + x^k)^binomial(k+4,5). %F A344100 G.f.: exp( Sum_{k>=1} (-1)^(k+1) * x^k / (k*(1 - x^k)^6) ). %t A344100 nmax = 28; CoefficientList[Series[Product[(1 + x^k)^Binomial[k + 4, 5], {k, 1, nmax}], {x, 0, nmax}], x] %t A344100 a[n_] := a[n] = If[n == 0, 1, (1/n) Sum[Sum[(-1)^(k/d + 1) d Binomial[d + 4, 5], {d, Divisors[k]}] a[n - k], {k, 1, n}]]; Table[a[n], {n, 0, 28}] %Y A344100 Cf. A000389, A000417, A028377, A258343, A305206, A344099, A344101. %K A344100 nonn %O A344100 0,3 %A A344100 _Ilya Gutkovskiy_, May 09 2021