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.

A347577 Number of partitions of n into 10 or more distinct parts.

This page as a plain text file.
%I A347577 #4 Sep 07 2021 19:38:48
%S A347577 1,1,2,3,5,7,11,15,22,30,42,56,76,99,131,169,219,278,355,445,560,695,
%T A347577 863,1061,1304,1588,1933,2336,2819,3381,4050,4824,5738,6793,8028,9450,
%U A347577 11105,13000,15195,17702,20588,23874,27640,31913,36790,42308,48578,55654,63666
%N A347577 Number of partitions of n into 10 or more distinct parts.
%F A347577 G.f.: Sum_{k>=10} x^(k*(k + 1)/2) / Product_{j=1..k} (1 - x^j).
%t A347577 nmax = 103; CoefficientList[Series[Sum[x^(k (k + 1)/2)/Product[(1 - x^j), {j, 1, k}], {k, 10, nmax}], {x, 0, nmax}], x] // Drop[#, 55] &
%Y A347577 Cf. A111133, A347548, A347549, A347572, A347573, A347574, A347575, A347576.
%K A347577 nonn
%O A347577 55,3
%A A347577 _Ilya Gutkovskiy_, Sep 07 2021