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.

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

This page as a plain text file.
%I A022734 #9 Sep 08 2022 08:44:46
%S A022734 1,10,75,450,2375,11302,49820,205900,807195,3023020,10883842,37840290,
%T A022734 127544465,418051040,1336017805,4172140618,12755565695,38242019080,
%U A022734 112591545060,325939921700,928795211589,2607843351420
%N A022734 Expansion of Product_{m>=1} (1-m*q^m)^-10.
%H A022734 G. C. Greubel, <a href="/A022734/b022734.txt">Table of n, a(n) for n = 0..1000</a>
%t A022734 With[{nmax = 50}, CoefficientList[Series[Product[(1 - k*q^k)^-10, {k, 1, nmax}], {q, 0, nmax}], q]] (* _G. C. Greubel_, Jul 25 2018 *)
%o A022734 (PARI) m=50; q='q+O('q^m); Vec(prod(n=1,m,(1-n*q^n)^-10)) \\ _G. C. Greubel_, Jul 25 2018
%o A022734 (Magma) n:=50; R<x>:=PowerSeriesRing(Integers(), n); Coefficients(R!(&*[(1/(1-m*x^m))^10:m in [1..n]])); // _G. C. Greubel_, Jul 25 2018
%K A022734 nonn
%O A022734 0,2
%A A022734 _N. J. A. Sloane_