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.

A347543 Number of partitions of n into 7 or more parts.

This page as a plain text file.
%I A347543 #5 Sep 06 2021 21:34:52
%S A347543 1,2,4,7,12,19,30,45,66,95,134,186,255,345,461,611,801,1043,1346,1727,
%T A347543 2199,2787,3508,4398,5482,6809,8414,10365,12711,15545,18935,23006,
%U A347543 27854,33646,40513,48680,58326,69748,83192,99048,117650,139513,165083,195034,229968,270760
%N A347543 Number of partitions of n into 7 or more parts.
%F A347543 G.f.: Sum_{k>=7} x^k / Product_{j=1..k} (1 - x^j).
%t A347543 nmax = 52; CoefficientList[Series[Sum[x^k/Product[(1 - x^j), {j, 1, k}], {k, 7, nmax}], {x, 0, nmax}], x] // Drop[#, 7] &
%Y A347543 Cf. A000065, A004250, A008636, A035300, A035301, A347542, A347544, A347545, A347547.
%K A347543 nonn
%O A347543 7,2
%A A347543 _Ilya Gutkovskiy_, Sep 06 2021