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.

A204469 Number of 5-element subsets that can be chosen from {1,2,...,10*n+5} having element sum 25*n+15.

This page as a plain text file.
%I A204469 #15 Oct 31 2018 17:03:57
%S A204469 1,141,1394,5910,17053,39361,78602,141702,236833,373309,561704,813722,
%T A204469 1142341,1561651,2087034,2734970,3523243,4470721,5597592,6925112,
%U A204469 8475873,10273519,12343044,14710482,17403231,20449711,23879724,27724080,32014983,36785631,42070632
%N A204469 Number of 5-element subsets that can be chosen from {1,2,...,10*n+5} having element sum 25*n+15.
%C A204469 a(n) is the number of partitions of 25*n+15 into 5 distinct parts <= 10*n+5.
%H A204469 Alois P. Heinz, <a href="/A204469/b204469.txt">Table of n, a(n) for n = 0..1000</a>
%F A204469 G.f.: -(12*x^10 +390*x^9 +1821*x^8 +4057*x^7 +6070*x^6 +6651*x^5 +5374*x^4 +3123*x^3 +1112*x^2 +139*x+1) / ((x^2+x+1)*(x^2+1)*(x+1)^2*(x-1)^5).
%e A204469 a(0) = 1 because there is 1 5-element subset that can be chosen from {1,2,3,4,5} having element sum 15: {1,2,3,4,5}.
%p A204469 a:= n-> (Matrix(11, (i, j)-> `if`(i=j-1, 1, `if`(i=11, [1, -2, 0, 1, 0, 2, -2, 0, -1, 0, 2][j], 0)))^n. <<1, 141, 1394, 5910, 17053, 39361, 78602, 141702, 236833, 373309, 561704>>)[1, 1]: seq(a(n), n=0..50);
%Y A204469 Bisection of column k=5 of A204459.
%K A204469 nonn,easy
%O A204469 0,2
%A A204469 _Alois P. Heinz_, Jan 16 2012