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.

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).

A067414 Seventh column of triangle A067410.

Original entry on oeis.org

1, 8, 112, 1568, 21952, 307328, 4302592, 60236288, 843308032, 11806312448, 165288374272, 2314037239808, 32396521357312, 453551299002368, 6349718186033152, 88896054604464128, 1244544764462497792
Offset: 0

Views

Author

Wolfdieter Lang, Jan 25 2002

Keywords

Crossrefs

Cf. A067413 (sixth column), A067415 (eighth column), A001023 (powers of 14).

Formula

a(n) = A067410(n+6, 6).
a(n) = 8*14^(n-1), n>=1, a(0)=1.
G.f.: (1-6*x)/(1-14*x).

A067416 Ninth column of triangle A067410.

Original entry on oeis.org

1, 10, 180, 3240, 58320, 1049760, 18895680, 340122240, 6122200320, 110199605760, 1983592903680, 35704672266240, 642684100792320, 11568313814261760, 208229648656711680, 3748133675820810240
Offset: 0

Views

Author

Wolfdieter Lang, Jan 25 2002

Keywords

Crossrefs

Cf. A067415 (eighth column), A001027 (powers of 18).

Formula

a(n)= A067410(n+8, 8). a(n)= 10*18^(n-1), n>=1, a(0)=1.
G.f. (1-8*x)/(1-18*x).
Showing 1-3 of 3 results.