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 A347544 #5 Sep 06 2021 21:35:01 %S A347544 1,2,4,7,12,19,30,45,67,96,137,190,263,356,480,637,842,1098,1427,1835, %T A347544 2351,2986,3780,4749,5949,7405,9190,11344,13966,17111,20913,25454, %U A347544 30908,37393,45141,54315,65222,78090,93317,111220,132323,157050,186088,220015,259716 %N A347544 Number of partitions of n into 8 or more parts. %F A347544 G.f.: Sum_{k>=8} x^k / Product_{j=1..k} (1 - x^j). %t A347544 nmax = 52; CoefficientList[Series[Sum[x^k/Product[(1 - x^j), {j, 1, k}], {k, 8, nmax}], {x, 0, nmax}], x] // Drop[#, 8] & %Y A347544 Cf. A000065, A004250, A008637, A035300, A035301, A347542, A347543, A347545, A347547. %K A347544 nonn %O A347544 8,2 %A A347544 _Ilya Gutkovskiy_, Sep 06 2021