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.

A000580 a(n) = binomial coefficient C(n,7).

Original entry on oeis.org

1, 8, 36, 120, 330, 792, 1716, 3432, 6435, 11440, 19448, 31824, 50388, 77520, 116280, 170544, 245157, 346104, 480700, 657800, 888030, 1184040, 1560780, 2035800, 2629575, 3365856, 4272048, 5379616, 6724520, 8347680, 10295472
Offset: 7

Views

Author

Keywords

Comments

Figurate numbers based on 7-dimensional regular simplex. According to Hyun Kwang Kim, it appears that every nonnegative integer can be represented as the sum of g = 15 of these numbers. - Jonathan Vos Post, Nov 28 2004
a(n) is the number of terms in the expansion of (Sum_{i=1..8} a_i)^n. - Sergio Falcon, Feb 12 2007
Product of seven consecutive numbers divided by 7!. - Artur Jasinski, Dec 02 2007
In this sequence there are no primes. - Artur Jasinski, Dec 02 2007
For a set of integers {1,2,...,n}, a(n) is the sum of the 2 smallest elements of each subset with 6 elements, which is 3*C(n+1,7) (for n>=6), hence a(n) = 3*C(n+1,7) = 3*A000580(n+1). - Serhat Bulut, Mar 13 2015
Partial sums of A000579. In general, the iterated sums S(m, n) = Sum_{j=1..n} S(m-1, j) with input S(1, n) = A000217(n) = 1 + 2 + ... + n are S(m, n) = risefac(n, m+1)/(m+1)! = binomial(n+m, m+1) = Sum_{k = 1..n} risefac(k, m)/m!, with the rising factorials risefac(x, m):= Product_{j=0..m-1} (x+j), for m >= 1. Such iterated sums of arithmetic progressions have been considered by Narayana Pandit (see The MacTutor History of Mathematics archive link, and the Gottwald et al. reference, p. 338, where the name Narayana Daivajna is also used). - Wolfdieter Lang, Mar 20 2015
a(n) = fallfac(n,7)/7! = binomial(n, 7) is also the number of independent components of an antisymmetric tensor of rank 7 and dimension n >= 7 (for n=1..6 this becomes 0). Here fallfac is the falling factorial. - Wolfdieter Lang, Dec 10 2015
From Juergen Will, Jan 02 2016: (Start)
Number of compositions (ordered partitions) of n+1 into exactly 8 parts.
Number of weak compositions (ordered weak partitions) of n-7 into exactly 8 parts. (End)

Examples

			For A={1,2,3,4,5,6,7}, subsets with 6 elements are {1,2,3,4,5,6}, {1,2,3,4,5,7}, {1,2,3,4,6,7}, {1,2,3,5,6,7}, {1,2,4,5,6,7}, {1,3,4,5,6,7}, {2,3,4,5,6,7}.
Sum of 2 smallest elements of each subset: a(7) = (1+2)+(1+2)+(1+2)+(1+2)+(1+2)+(1+3)+(2+3) = 24 = 3*C(7+1,7) = 3*A000580(7+1). - _Serhat Bulut_, Mar 13 2015
		

References

  • M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, 1964 (and various reprintings), p. 828.
  • Albert H. Beiler, Recreations in the Theory of Numbers, Dover, NY, 1964, p. 196.
  • L. E. Dickson, History of the Theory of Numbers. Carnegie Institute Public. 256, Washington, DC, Vol. 1, 1919; Vol. 2, 1920; Vol. 3, 1923, see vol. 2, p. 7.
  • S. Gottwald, H.-J. Ilgauds and K.-H. Schlote (eds.), Lexikon bedeutender Mathematiker (in German), Bibliographisches Institut Leipzig, 1990.
  • J. C. P. Miller, editor, Table of Binomial Coefficients. Royal Society Mathematical Tables, Vol. 3, Cambridge Univ. Press, 1954.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Magma
    [Binomial(n,7): n in [7..40]]; // Vincenzo Librandi, Mar 21 2015
    
  • Maple
    ZL := [S, {S=Prod(B,B,B,B,B,B,B,B), B=Set(Z, 1 <= card)}, unlabeled]: seq(combstruct[count](ZL, size=n), n=8..38); # Zerinvary Lajos, Mar 13 2007
    A000580:=1/(z-1)**8; # Simon Plouffe in his 1992 dissertation, offset 0.
    seq(binomial(n+7,7)*1^n,n=0..30); # Zerinvary Lajos, Jun 23 2008
    G(x):=x^7*exp(x): f[0]:=G(x): for n from 1 to 38 do f[n]:=diff(f[n-1],x) od: x:=0: seq(f[n]/7!,n=7..37); # Zerinvary Lajos, Apr 05 2009
  • Mathematica
    Table[n(n + 1)(n + 2)(n + 3)(n + 4)(n + 5)(n + 6)/7!, {n, 1, 100}] (* Artur Jasinski, Dec 02 2007 *)
    Binomial[Range[7,40],7] (* or *) LinearRecurrence[ {8,-28,56,-70,56,-28,8,-1},{1,8,36,120,330,792,1716,3432},40] (* Harvey P. Dale, Nov 28 2011 *)
    CoefficientList[Series[1 / (1-x)^8, {x, 0, 33}], x] (* Vincenzo Librandi, Mar 21 2015 *)
  • PARI
    a(n)=binomial(n,7) \\ Charles R Greathouse IV, Sep 24 2015

Formula

G.f.: x^7/(1-x)^8.
a(n) = (n^7 - 21*n^6 + 175*n^5 - 735*n^4 + 1624*n^3 - 1764*n^2 + 720*n)/5040.
a(n) = -A110555(n+1,7). - Reinhard Zumkeller, Jul 27 2005
Convolution of the nonnegative numbers (A001477) with the sequence A000579. Also convolution of the triangular numbers (A000217) with the sequence A000332. Also convolution of the sequence {1,1,1,1,...} (A000012) with the sequence A000579. Also self-convolution of the tetrahedral numbers (A000292). - Sergio Falcon, Feb 12 2007
a(n+4) = (1/3!)*(d^3/dx^3)S(n,x)|A049310.%20-%20_Wolfdieter%20Lang">{x=2}, n >= 3. One sixth of third derivative of Chebyshev S-polynomials evaluated at x=2. See A049310. - _Wolfdieter Lang, Apr 04 2007
a(n) = n(n-1)(n-2)(n-3)(n-4)(n-5)(n-6)/7!. - Artur Jasinski, Dec 02 2007, R. J. Mathar, Jul 07 2009
a(n) = 8*a(n-1) - 28*a(n-2) + 56*a(n-3) - 70*a(n-4) + 56*a(n-5) - 28*a(n-6) + 8*a(n-7) - a(n-8) with a(7)=1, a(8)=8, a(9)=36, a(10)=120, a(11)=330, a(12)=792, a(13)=1716, a(14)=3432. - Harvey P. Dale, Nov 28 2011
a(n) = 3*C(n+1,7) = 3*A000580(n+1). - Serhat Bulut, Mar 13 2015
From Wolfdieter Lang, Mar 21 2015: (Start)
a(n) = A104712(n, 7), n >= 7.
a(n+6) = sum(A000579(j+5), j = 1..n), n >= 1. See the Mar 20 2015 comment above. (End)
Sum_{k >= 7} 1/a(k) = 7/6. - Tom Edgar, Sep 10 2015
Sum_{n>=7} (-1)^(n+1)/a(n) = A001787(7)*log(2) - A242091(7)/6! = 448*log(2) - 9289/30 = 0.8966035575... - Amiram Eldar, Dec 10 2020

Extensions

More terms from Larry Reeves (larryr(AT)acm.org), Mar 17 2000
Some formulas that referred to other offsets corrected by R. J. Mathar, Jul 07 2009