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-2 of 2 results.

A067410 Triangle with columns built from certain power sequences.

Original entry on oeis.org

1, 2, 1, 4, 3, 1, 8, 12, 4, 1, 16, 48, 24, 5, 1, 32, 192, 144, 40, 6, 1, 64, 768, 864, 320, 60, 7, 1, 128, 3072, 5184, 2560, 600, 84, 8, 1, 256, 12288, 31104, 20480, 6000, 1008, 112, 9, 1, 512, 49152, 186624, 163840, 60000, 12096, 1568, 144, 10, 1
Offset: 0

Views

Author

Wolfdieter Lang, Jan 25 2002

Keywords

Examples

			Triangle starts:
  1;
  2,  1;
  4,  3, 1;
  8, 12, 4, 1;
  ...
		

Crossrefs

Cf. A009998 (triangle built from powers of (m+1)), A067402.

Programs

  • Mathematica
    A[n_,m_]:=If[n==m,1,(m+2)(2(m+1))^(n-m-1)]; Flatten[Table[A[n,m],{n,0,9},{m,0,n}]] (* Stefano Spezia, Sep 30 2022 *)

Formula

a(n, m) = 1 if n = m; a(n, m) = (m+2)*(2*(m+1))^(n-m-1) if n > m >= 0.
G.f. for column m: (x^m)*(1-m*x)/(1-2*(m+1)*x).

A067415 Eighth column of triangle A067410.

Original entry on oeis.org

1, 9, 144, 2304, 36864, 589824, 9437184, 150994944, 2415919104, 38654705664, 618475290624, 9895604649984, 158329674399744, 2533274790395904, 40532396646334464, 648518346341351424
Offset: 0

Views

Author

Wolfdieter Lang, Jan 25 2002

Keywords

Crossrefs

Cf. A067414 (seventh column), A067416 (ninth column), A001025 (powers of 16).

Formula

a(n)= A067410(n+7, 7). a(n)= 9*16^(n-1), n>=1, a(0)=1.
G.f.: (1-7*x)/(1-16*x).
Showing 1-2 of 2 results.