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.
%I A347576 #5 Sep 07 2021 19:38:40 %S A347576 1,1,2,3,5,7,11,15,22,30,42,55,75,97,128,164,212,267,340,423,530,654, %T A347576 808,986,1207,1460,1768,2123,2549,3037,3620,4284,5069,5965,7012,8203, %U A347576 9590,11160,12975,15029,17388,20048,23092,26513,30408,34781,39734,45278 %N A347576 Number of partitions of n into 9 or more distinct parts. %F A347576 G.f.: Sum_{k>=9} x^(k*(k + 1)/2) / Product_{j=1..k} (1 - x^j). %t A347576 nmax = 92; CoefficientList[Series[Sum[x^(k (k + 1)/2)/Product[(1 - x^j), {j, 1, k}], {k, 9, nmax}], {x, 0, nmax}], x] // Drop[#, 45] & %Y A347576 Cf. A111133, A347548, A347549, A347572, A347573, A347574, A347575, A347577. %K A347576 nonn %O A347576 45,3 %A A347576 _Ilya Gutkovskiy_, Sep 07 2021