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.

Showing 1-3 of 3 results.

A167875 One third of product plus sum of three consecutive nonnegative integers; a(n)=(n+1)(n^2+2n+3)/3.

Original entry on oeis.org

1, 4, 11, 24, 45, 76, 119, 176, 249, 340, 451, 584, 741, 924, 1135, 1376, 1649, 1956, 2299, 2680, 3101, 3564, 4071, 4624, 5225, 5876, 6579, 7336, 8149, 9020, 9951, 10944, 12001, 13124, 14315, 15576, 16909, 18316, 19799, 21360, 23001, 24724, 26531
Offset: 0

Views

Author

Klaus Brockhaus, Nov 14 2009

Keywords

Comments

a(n) = ((n*(n+1)*(n+2))+(n+(n+1)+(n+2)))/3, n >= 0.
Equals A006527 without initial term 0: a(n) = A006527(n+1).
Binomial transform of A167876.
Inverse binomial transform of A080930.
a(n) = A007290(n+2)+n+1.
a(n) = A014820(n)/(n+1) for n > 0.
a(n) = A116731(n+2)-1.
a(n) = A033547(n+1)-n.
a(n) = A054602(n)/3.
a(n) = A086514(n+3)-2.
a(n) = A002061(n+1)+a(n-1) for n > 0.
a(n) = A005894(n)-a(n-1) for n > 0.
First bisection is A057813.
Second differences are in A004277.
a(n) = A177342(n)*(-1)+a(n-1)*5 with n>0. For n=8, a(8)=-A177342(8)+a(7)*5=-631+176*5=249. - Bruno Berselli, May 18 2010

Examples

			a(0) = (0*1*2+0+1+2)/3 = (0+3)/3 = 1.
a(1) = (1*2*3+1+2+3)/3 = (6+6)/3 = 4.
a(6)-4*a(5)+6*a(4)-4*a(3)+a(2) = 119-4*76+6*45-4*24+11 = 0. - _Bruno Berselli_, May 26 2010
		

Crossrefs

Cf. A001477 (nonnegative integers),
A006527 ((n^3+2*n)/3),
A167876 (1, 3, 4, 2, 0, 0, 0, 0, ...),
A007290 (2*C(n, 3)),
A014820 ((1/3)*(n^2+2*n+3)*(n+1)^2),
A033547 (n*(n^2+5)/3),
A054602 (Sum_{d|3} phi(d)*n^(3/d)),
A086514 ((n^3-6*n^2+14*n-6)/3),
A002061 (n^2-n+1),
A005894 (centered tetrahedral numbers),
A057813 ((2*n+1)*(4*n^2+4*n+3)/3),
A004277 (1 and the positive even numbers),
A028387 (n+(n+1)^2),

Programs

  • Magma
    [ (&*s + &+s)/3 where s is [n..n+2]: n in [0..42] ];
    
  • Mathematica
    Select[Table[(n*(n+1)*(n+2)+n+(n+1)+(n+2))/3,{n,0,5!}],IntegerQ[#]&] (* Vladimir Joseph Stephan Orlovsky, Dec 04 2010 *)
    (Times@@#+Total[#])/3&/@Partition[Range[0,65],3,1]  (* Harvey P. Dale, Mar 14 2011 *)
  • PARI
    a(n)=(n+1)*(n^2+2*n+3)/3 \\ Charles R Greathouse IV, Oct 07 2015

Formula

a(n) = (n^3+3*n^2+5*n+3)/3.
a(n) = 3*a(n-1)-3*a(n-2)+a(n-3)+2 for n > 3; a(0)=1, a(1)=4, a(2)=11, a(3)=24.
G.f.: (1+x^2)/(1-x)^4.
a(n) = SUM(A109613(k)*A005408(n-k): 0<=k<=n). - Reinhard Zumkeller, Dec 05 2009
a(n)-4*a(n-1)+6*a(n-2)-4*a(n-3)+a(n-4)=0 for n>3. - Bruno Berselli, May 26 2010

A166941 Product plus sum of four consecutive nonnegative numbers.

Original entry on oeis.org

6, 34, 134, 378, 862, 1706, 3054, 5074, 7958, 11922, 17206, 24074, 32814, 43738, 57182, 73506, 93094, 116354, 143718, 175642, 212606, 255114, 303694, 358898, 421302, 491506, 570134, 657834, 755278, 863162, 982206, 1113154, 1256774
Offset: 0

Views

Author

Keywords

Comments

a(n) = (n*...*(n+3))+(n+...+(n+3)), n >= 0.
All terms are even.
Binomial transform of 2*A167858.

Examples

			a(0) = 0*1*2*3+0+1+2+3 = 0+6 = 6.
a(1) = 1*2*3*4+1+2+3+4 = 24+10 = 34.
		

Crossrefs

Cf. A001477 (nonnegative integers), A167858 (3,14,36,36,12,0,0,0,...), A028387 (n+(n+1)^2), A167875, A166942, A166943.

Programs

  • Magma
    [ &*s + &+s where s is [n..n+3]: n in [0..32] ]; // Klaus Brockhaus, Nov 14 2009
  • Mathematica
    lst={};Do[p=(n+3)*(n+2)*(n+1)*n+(n+3)+(n+2)+(n+1)+n;AppendTo[lst,p],{n,0,5!}];lst

Formula

a(n) = n^4 + 6*n^3 + 11*n^2 + 10*n + 6. - Charles R Greathouse IV, Nov 02 2009, [corrected by Klaus Brockhaus, Nov 14 2009]
a(n) = 4*a(n-1) - 6*a(n-2) + 4*a(n-3) - a(n-4) + 24 for n > 3; a(0)=6, a(1)=34, a(2)=134, a(3)=378. - Klaus Brockhaus, Nov 14 2009
G.f.: 2*(3 + 2*x + 12*x^2 - 6*x^3 + x^4)/(1-x)^5. - Klaus Brockhaus, Nov 14 2009

Extensions

Edited and offset corrected by Klaus Brockhaus, Nov 14 2009

A166942 One fifth of product plus sum of five consecutive nonnegative numbers.

Original entry on oeis.org

2, 27, 148, 509, 1350, 3031, 6056, 11097, 19018, 30899, 48060, 72085, 104846, 148527, 205648, 279089, 372114, 488395, 632036, 807597, 1020118, 1275143, 1578744, 1937545, 2358746, 2850147, 3420172, 4077893, 4833054, 5696095
Offset: 0

Views

Author

Keywords

Comments

a(n) = ((n*...*(n+4))+(n+...+(n+4)))/5, n >= 0.
Binomial transform of 2, 25, 96, 144, 96, 24, 0, 0, 0, 0, ....
Partial sums of A062938 where initial term 1 is replaced by 2.

Examples

			a(0) = (0*1*2*3*4 + 0 + 1 + 2 + 3 + 4)/5 = (0 + 10)/5 = 2.
a(1) = (1*2*3*4*5 + 1 + 2 + 3 + 4 + 5)/5 = (120 + 15)/5 = 27.
		

Crossrefs

Cf. A001477 (nonnegative integers), A062938 (squares of the form n(n+1)(n+2)(n+3)+1), A028387 (n+(n+1)^2), A167875, A166941, A166943.

Programs

  • Magma
    [ (&*s + &+s)/5 where s is [n..n+4]: n in [0..29] ]; // Klaus Brockhaus, Nov 14 2009
  • Mathematica
    Table[((n+4)*(n+3)*(n+2)*(n+1)*n+(n+4)+(n+3)+(n+2)+(n+1)+n)/5, {n,0,100}]
    (Total[#]+Times@@#)/5&/@Partition[Range[0,100],5,1]  (* Harvey P. Dale, Mar 05 2011 *)

Formula

a(n) = (n^5 + 10n^4 + 35n^3 + 50n^2 + 29n + 10)/5. - Charles R Greathouse IV, Nov 02 2009
a(n) = 5*a(n-1) - 10*a(n-2) + 10*a(n-3) - 5*a(n-4) + a(n-5) + 24 for n > 4; a(0)=2, a(1)=27, a(2)=148, a(3)=509, a(4)=1350. - Klaus Brockhaus, Nov 14 2009
G.f.: (2+15*x+16*x^2-14*x^3+6*x^4-x^5)/(1-x)^6. - Klaus Brockhaus, Nov 14 2009

Extensions

Edited and offset corrected by Klaus Brockhaus, Nov 14 2009
Showing 1-3 of 3 results.