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.

A026815 Number of partitions of n in which the greatest part is 9.

This page as a plain text file.
%I A026815 #53 Feb 29 2024 14:59:41
%S A026815 0,0,0,0,0,0,0,0,0,1,1,2,3,5,7,11,15,22,30,41,54,73,94,123,157,201,
%T A026815 252,318,393,488,598,732,887,1076,1291,1549,1845,2194,2592,3060,3589,
%U A026815 4206,4904,5708,6615,7657,8824,10156,11648,13338,15224,17354,19720,22380
%N A026815 Number of partitions of n in which the greatest part is 9.
%H A026815 Seiichi Manyama, <a href="/A026815/b026815.txt">Table of n, a(n) for n = 0..10000</a> (terms 1..1000 from Vincenzo Librandi)
%H A026815 <a href="/index/Rec#order_45">Index entries for linear recurrences with constant coefficients</a>, signature (1, 1, 0, 0, -1, 0, -1, 0, 0, -1, 0, 2, 1, 1, 1, 0, -1, -1, -1, -2, -1, -1, 1, 1, 2, 1, 1, 1, 0, -1, -1, -1, -2, 0, 1, 0, 0, 1, 0, 1, 0, 0, -1, -1, 1).
%F A026815 G.f.: x^9 / ((1-x)*(1-x^2)*(1-x^3)*(1-x^4)*(1-x^5)*(1-x^6)*(1-x^7)*(1-x^8)*(1-x^9)). - _Colin Barker_, Feb 22 2013
%F A026815 a(n) = A008284(n,9). - _Robert A. Russell_, May 13 2018
%p A026815 part_ZL:=[S,{S=Set(U,card=r),U=Sequence(Z,card>=1)}, unlabeled]: seq(count(subs(r=9,part_ZL),size=m),m=1..50); # _Zerinvary Lajos_, Mar 09 2007
%t A026815 Table[ Length[ Select[ Partitions[n], First[ # ] == 9 & ]], {n, 1, 60} ]
%t A026815 CoefficientList[Series[x^9/((1 - x) (1 - x^2) (1 - x^3) (1 - x^4) (1 - x^5) (1 - x^6) (1 - x^7) (1 - x^8) (1 - x^9)), {x, 0, 60}], x] (* _Vincenzo Librandi_, Oct 18 2013 *)
%t A026815 Drop[LinearRecurrence[{1, 1, 0, 0, -1, 0, -1, 0, 0, -1, 0, 2, 1, 1, 1, 0, -1, -1, -1, -2, -1, -1, 1, 1, 2, 1, 1, 1, 0, -1, -1, -1, -2, 0, 1, 0, 0, 1, 0, 1, 0, 0, -1, -1, 1}, Append[Table[0,{44}],1],136],35] (* _Robert A. Russell_, May 17 2018 *)
%o A026815 (PARI) x='x+O('x^99); concat(vector(9), Vec(x^9/prod(k=1, 9, 1-x^k))) \\ _Altug Alkan_, May 17 2018
%o A026815 (GAP) List([0..70],n->NrPartitions(n,9)); # _Muniru A Asiru_, May 17 2018
%Y A026815 Essentially same as A008638.
%Y A026815 Cf. A008284.
%Y A026815 Cf. A026810, A026811, A026812, A026813, A026814, A026816.
%K A026815 nonn,easy
%O A026815 0,12
%A A026815 _Clark Kimberling_
%E A026815 a(0)=0 prepended by _Seiichi Manyama_, Jun 08 2017