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.

A347545 Number of partitions of n into 9 or more parts.

This page as a plain text file.
%I A347545 #5 Sep 06 2021 21:35:13
%S A347545 1,2,4,7,12,19,30,45,67,97,138,193,267,364,491,656,868,1139,1483,1917,
%T A347545 2461,3142,3985,5030,6315,7893,9817,12165,15007,18451,22597,27589,
%U A347545 33565,40724,49249,59410,71460,85753,102632,122574,146032,173638,206003,243951,288296,340124
%N A347545 Number of partitions of n into 9 or more parts.
%F A347545 G.f.: Sum_{k>=9} x^k / Product_{j=1..k} (1 - x^j).
%t A347545 nmax = 54; CoefficientList[Series[Sum[x^k/Product[(1 - x^j), {j, 1, k}], {k, 9, nmax}], {x, 0, nmax}], x] // Drop[#, 9] &
%Y A347545 Cf. A000065, A004250, A008638, A035300, A035301, A347542, A347543, A347544, A347547.
%K A347545 nonn
%O A347545 9,2
%A A347545 _Ilya Gutkovskiy_, Sep 06 2021