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 A347575 #5 Sep 07 2021 19:38:34 %S A347575 1,1,2,3,5,7,11,15,22,30,41,54,73,94,123,157,201,252,318,394,489,600, %T A347575 735,892,1083,1302,1564,1867,2224,2634,3116,3665,4305,5035,5877,6834, %U A347575 7935,9179,10601,12208,14033,16087,18415,21024,23968,27264,30965,35097,39728,44881 %N A347575 Number of partitions of n into 8 or more distinct parts. %F A347575 G.f.: Sum_{k>=8} x^(k*(k + 1)/2) / Product_{j=1..k} (1 - x^j). %t A347575 nmax = 85; CoefficientList[Series[Sum[x^(k (k + 1)/2)/Product[(1 - x^j), {j, 1, k}], {k, 8, nmax}], {x, 0, nmax}], x] // Drop[#, 36] & %Y A347575 Cf. A111133, A347548, A347549, A347572, A347573, A347574, A347576, A347577. %K A347575 nonn %O A347575 36,3 %A A347575 _Ilya Gutkovskiy_, Sep 07 2021