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.

A347542 Number of partitions of n into 6 or more parts.

This page as a plain text file.
%I A347542 #5 Sep 06 2021 21:34:43
%S A347542 1,2,4,7,12,19,30,44,65,92,130,178,244,326,435,571,747,964,1242,1581,
%T A347542 2009,2530,3178,3962,4930,6094,7518,9225,11296,13768,16751,20295,
%U A347542 24546,29583,35591,42685,51112,61028,72757,86523,102740,121720,144007,170018,200461,235910,277270
%N A347542 Number of partitions of n into 6 or more parts.
%F A347542 G.f.: Sum_{k>=6} x^k / Product_{j=1..k} (1 - x^j).
%t A347542 nmax = 52; CoefficientList[Series[Sum[x^k/Product[(1 - x^j), {j, 1, k}], {k, 6, nmax}], {x, 0, nmax}], x] // Drop[#, 6] &
%Y A347542 Cf. A000065, A001402, A004250, A035300, A035301, A347543, A347544, A347545, A347547.
%K A347542 nonn
%O A347542 6,2
%A A347542 _Ilya Gutkovskiy_, Sep 06 2021