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.

A022738 Expansion of Product_{m>=1} (1-m*q^m)^-14.

This page as a plain text file.
%I A022738 #9 Sep 08 2022 08:44:46
%S A022738 1,14,133,994,6384,36568,191793,935902,4300611,18770612,78347759,
%T A022738 314391168,1218102389,4572965754,16683909711,59301765852,205796230227,
%U A022738 698570164180,2323198273151,7580214724124
%N A022738 Expansion of Product_{m>=1} (1-m*q^m)^-14.
%H A022738 G. C. Greubel, <a href="/A022738/b022738.txt">Table of n, a(n) for n = 0..1000</a>
%t A022738 With[{nmax = 50}, CoefficientList[Series[Product[(1 - k*q^k)^-14, {k, 1, nmax}], {q, 0, nmax}], q]] (* _G. C. Greubel_, Jul 25 2018 *)
%o A022738 (PARI) m=50; q='q+O('q^m); Vec(prod(n=1,m,(1-n*q^n)^-14)) \\ _G. C. Greubel_, Jul 25 2018
%o A022738 (Magma) n:=50; R<x>:=PowerSeriesRing(Integers(), n); Coefficients(R!(&*[(1/(1-m*x^m))^14:m in [1..n]])); // _G. C. Greubel_, Jul 25 2018
%K A022738 nonn
%O A022738 0,2
%A A022738 _N. J. A. Sloane_