cp's OEIS Frontend

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.

A341225 Expansion of (-1 + Product_{k>=1} 1 / (1 - x^k))^6.

This page as a plain text file.
%I A341225 #8 Feb 07 2021 11:49:48
%S A341225 1,12,78,370,1437,4848,14719,41148,107610,266296,628941,1427118,
%T A341225 3127369,6646440,13746081,27744926,54782271,106029918,201512970,
%U A341225 376630680,693161334,1257641676,2251764699,3982196910,6961522279,12038699766,20607718317,34938910360
%N A341225 Expansion of (-1 + Product_{k>=1} 1 / (1 - x^k))^6.
%H A341225 Alois P. Heinz, <a href="/A341225/b341225.txt">Table of n, a(n) for n = 6..10000</a>
%p A341225 b:= proc(n, k) option remember; `if`(k<2, `if`(n=0, 1-k, combinat[
%p A341225       numbpart](n)), (q-> add(b(j, q)*b(n-j, k-q), j=0..n))(iquo(k, 2)))
%p A341225     end:
%p A341225 a:= n-> b(n, 6):
%p A341225 seq(a(n), n=6..33);  # _Alois P. Heinz_, Feb 07 2021
%t A341225 nmax = 33; CoefficientList[Series[(-1 + Product[1/(1 - x^k), {k, 1, nmax}])^6, {x, 0, nmax}], x] // Drop[#, 6] &
%Y A341225 Column k=6 of A060642.
%Y A341225 Cf. A000041, A023005, A048574, A327384, A341221, A341222, A341223, A341226, A341227, A341228.
%K A341225 nonn
%O A341225 6,2
%A A341225 _Ilya Gutkovskiy_, Feb 07 2021