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 A212549 #13 Jun 08 2022 18:53:31 %S A212549 0,0,1,1,3,4,8,11,19,26,41,56,83,111,158,209,287,375,503,648,852,1086, %T A212549 1403,1770,2255,2817,3546,4393,5469,6723,8294,10120,12382,15011,18228, %U A212549 21965,26497,31749,38069,45383,54114,64204,76176,89975,106259,124998,146987 %N A212549 Number of partitions of n containing at least one part m-9 if m is the largest part. %H A212549 Alois P. Heinz, <a href="/A212549/b212549.txt">Table of n, a(n) for n = 9..1000</a> %F A212549 G.f.: Sum_{i>0} x^(2*i+9) / Product_{j=1..9+i} (1-x^j). %e A212549 a(11) = 1: [10,1]. %e A212549 a(12) = 1: [10,1,1]. %e A212549 a(13) = 3: [10,1,1,1], [10,2,1], [11,2]. %e A212549 a(14) = 4: [10,1,1,1,1], [10,2,1,1], [10,3,1], [11,2,1]. %e A212549 a(15) = 8: [10,1,1,1,1,1], [10,2,1,1,1], [10,2,2,1], [10,3,1,1], [10,4,1], [11,2,1,1], [11,2,2], [12,3]. %p A212549 b:= proc(n, i) option remember; %p A212549 `if`(n=0 or i=1, 1, b(n, i-1)+`if`(i>n, 0, b(n-i, i))) %p A212549 end: %p A212549 a:= n-> add(b(n-2*m-9, min(n-2*m-9, m+9)), m=1..(n-9)/2): %p A212549 seq(a(n), n=9..60); %t A212549 b[n_, i_] := b[n, i] = If[n == 0 || i == 1, 1, b[n, i - 1] + If[i > n, 0, b[n - i, i]]]; %t A212549 a[n_] := Sum[b[n - 2 m - 9, Min[n - 2 m - 9, m + 9]], {m, 1, (n - 9)/2}]; %t A212549 a /@ Range[9, 60] (* _Jean-François Alcover_, Dec 07 2020, after _Alois P. Heinz_ *) %t A212549 Table[Count[IntegerPartitions[n],_?(MemberQ[#,#[[1]]-9]&)],{n,9,60}] (* _Harvey P. Dale_, Jun 08 2022 *) %Y A212549 Column k=9 of A212551. %K A212549 nonn %O A212549 9,5 %A A212549 _Alois P. Heinz_, May 20 2012