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.

A081284 An interleaved sequence of pyramidal and polygonal numbers.

Original entry on oeis.org

0, 1, 1, 6, 7, 22, 27, 62, 77, 147, 182, 308, 378, 588, 714, 1044, 1254, 1749, 2079, 2794, 3289, 4290, 5005, 6370, 7371, 9191, 10556, 12936, 14756, 17816, 20196, 24072, 27132, 31977, 35853, 41838, 46683, 53998, 59983, 68838, 76153, 86779, 95634
Offset: 0

Views

Author

Paul Barry, Mar 17 2003

Keywords

Crossrefs

Programs

  • Mathematica
    CoefficientList[Series[x (1 + x^3) / ((1 - x) (1 - x^2)^5), {x, 0, 50}], x] (* Vincenzo Librandi, Aug 07 2013 *)

Formula

G.f.: x*(1+x^3)/((1-x)*(1-x^2)^5).
a(2*n) = A005585(n); a(2*n+1) = A081282(n+1).
G.f.: (x*(x^2-x+1))/((x+1)^4*(x-1)^6). - Maksym Voznyy (voznyy(AT)mail.ru), Jul 28 2009
a(n) = (2*n+1-(-1)^n)*(2*n+5-(-1)^n)*(2*n+9-(-1)^n)*(2*n^2+15*n+51+3*(n-5)*(-1)^n)/30720. - Luce ETIENNE, Mar 13 2015

A081283 An interleaved sequence of pyramidal and polygonal numbers.

Original entry on oeis.org

0, 1, 1, 5, 6, 16, 20, 40, 50, 85, 105, 161, 196, 280, 336, 456, 540, 705, 825, 1045, 1210, 1496, 1716, 2080, 2366, 2821, 3185, 3745, 4200, 4880, 5440, 6256, 6936, 7905, 8721, 9861, 10830, 12160, 13300, 14840, 16170, 17941, 19481, 21505, 23276, 25576, 27600
Offset: 0

Views

Author

Paul Barry, Mar 17 2003

Keywords

Crossrefs

Programs

  • Maple
    A081283:=n->(2*n+1-(-1)^n)*(2*n+5-(-1)^n)*(2*n^2+2*(5+(-1)^n)*n+27-11*(-1)^n)/1536: seq(A081283(n), n=0..80); # Wesley Ivan Hurt, Apr 18 2017
  • Mathematica
    CoefficientList[Series[x (1 + x^3) / ((1 - x) (1 - x^2)^4), {x, 0, 50}], x] (* Vincenzo Librandi, Aug 07 2013 *)

Formula

G.f.: x*(1+x^3)/((1-x)*(1-x^2)^4).
a(2*n) = A002415(n); a(2*n+1) = A006007(n+1).
a(n) = (2*n+1-(-1)^n)*(2*n+5-(-1)^n)*(2*n^2+2*(5+(-1)^n)*n+27-11*(-1)^n)/1536. - Luce ETIENNE, Mar 11 2015

A129687 A129686 * A007318.

Original entry on oeis.org

1, 1, 1, 2, 2, 1, 2, 4, 3, 1, 2, 6, 7, 4, 1, 2, 8, 13, 11, 5, 1, 2, 10, 21, 24, 16, 6, 1, 2, 12, 31, 45, 40, 22, 7, 1, 2, 14, 43, 76, 85, 62, 29, 8, 1, 2, 16, 57, 119, 161, 147, 91, 37, 9, 1, 2, 18, 73, 176, 280, 308, 238, 128, 46, 10, 1, 2, 20, 91, 249, 456
Offset: 0

Views

Author

Gary W. Adamson, Apr 28 2007

Keywords

Comments

Row sums = A084215: (1, 2, 5, 10, 20, 40, 80, ...). A007318 * A129686 = A124725.
From Philippe Deléham, Feb 12 2014: (Start)
Riordan array ((1+x^2)/(1-x), x/(1-x)).
Diagonal sums are A000032(n) - 0^n (cf. A000204).
T(n,0) = A046698(n+1).
T(n+1,1) = A004277(n).
T(n+2,2) = A002061(n+1).
T(n+3,3) = A006527(n+1) = A167875(n).
T(n+4,4) = A006007(n+1).
T(n+5,5) = A081282(n+1). (End)

Examples

			First few rows of the triangle:
  1;
  1,   1;
  2,   2,   1;
  2,   4,   3,   1;
  2,   6,   7,   4,   1;
  2,   8,  13,  11,   5,   1;
  2,  10,  21,  24,  16,   6,   1;
  2,  12,  31,  45,  40,  22,   7,   1;
  2,  14,  43,  76,  85,  62,  29,   8,   1;
  2,  16,  57, 119, 161, 147,  91,  37,   9,   1;
  ...
		

Crossrefs

Formula

A129686 * A007318 (Pascal's Triangle), as infinite lower triangular matrices.
T(n,k) = T(n-1,k) + T(n-1,k-1), T(0,0) = T(1,0) = T(1,1) = T(2,2) = 1, T(2,0) = T(2,1) = 2, T(n,k) = 0 if k<0 or if k>n. - Philippe Deléham, Feb 12 2014

Extensions

More terms from Philippe Deléham, Feb 12 2014
Showing 1-3 of 3 results.