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

A109493 a(n) = 7^((n^2 - n)/2).

Original entry on oeis.org

1, 1, 7, 343, 117649, 282475249, 4747561509943, 558545864083284007, 459986536544739960976801, 2651730845859653471779023381601, 107006904423598033356356300384937784807
Offset: 0

Views

Author

Philippe Deléham, Aug 29 2005

Keywords

Comments

Sequence given by the Hankel transform (see A001906 for definition) of A081178 = {1, 1, 8, 71, 680, 6882, 72528, 788019, ...}; example: det([1, 1, 8, 71; 1, 8, 71, 680; 8, 71, 680, 6882; 71, 680, 6882, 72528]) = 7^6 = 117649.
In general, sequences of the form m^((n^2 - n)/2) enumerate the graphs with n labeled nodes with m types of edge. a(n) therefore is the number of labeled graphs with n nodes with 7 types of edge. - Mark Stander, Apr 11 2019

Crossrefs

Programs

Formula

a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(7i, j).
G.f. A(x) satisfies: A(x) = 1 + x * A(7*x). - Ilya Gutkovskiy, Jun 04 2020

A109966 a(n) = 8^((n^2-n)/2).

Original entry on oeis.org

1, 1, 8, 512, 262144, 1073741824, 35184372088832, 9223372036854775808, 19342813113834066795298816, 324518553658426726783156020576256, 43556142965880123323311949751266331066368, 46768052394588893382517914646921056628989841375232, 401734511064747568885490523085290650630550748445698208825344
Offset: 0

Views

Author

Philippe Deléham, Sep 01 2005

Keywords

Comments

Sequence given by the Hankel transform (see A001906 for definition) of A082147 = {1, 1, 9, 89, 945, 10577, 123129, 1476841, ...}; example: det([1, 1, 9, 89; 1, 9, 89, 945; 9, 89, 945, 10577; 89, 945, 10577, 123129]) = 8^6 = 262144.
The number of labeled multigraphs on n vertices such that (i) no self loops are allowed; (ii) all edges are painted in one of 3 colors; (iii) edges between any pair of vertices are painted in distinct colors. Note, this implies that there are at most 3 edges between any vertex pair. Also note there is no restriction on the color of edges incident to a common vertex. - Geoffrey Critzer, Jan 14 2020

Crossrefs

Programs

Formula

a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(8i, j).
Hankel transform of A059435. - Philippe Deléham, Sep 03 2006

Extensions

a(10) corrected and a(11), a(12) from Georg Fischer, Apr 01 2022

A110147 10^((n^2-n)/2).

Original entry on oeis.org

1, 1, 10, 1000, 1000000, 10000000000, 1000000000000000, 1000000000000000000000, 10000000000000000000000000000, 1000000000000000000000000000000000000
Offset: 0

Views

Author

Philippe Deléham, Sep 04 2005

Keywords

Comments

Sequence given by the Hankel transform (see A001906 for definition) of A082148 = {1, 1, 11, 131, 1661, 22101, 305151, 4335711, ...}; example: det([1, 1, 11, 131; 1, 11, 131, 1661; 11, 131, 1661, 22101; 131, 1661, 22101, 305151]) = 10^6 = 1000000.
Also the Hankel transform of A379103. - Nathaniel Johnston, Dec 16 2024

Crossrefs

Programs

Formula

a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(10i, j).
a(n)=10a(n-1)^2/a(n-2), a(0)=a(1)=1. - Michael Somos, Sep 12 2005

A110195 a(n) = 11^((n^2-n)/2).

Original entry on oeis.org

1, 1, 11, 1331, 1771561, 25937424601, 4177248169415651, 7400249944258160101211, 144209936106499234037676064081, 30912680532870672635673352936887453361, 72890483685103052142902866787761839379440139451, 1890591424712781041871514584574319778449301246603238034051
Offset: 0

Views

Author

Philippe Deléham, Sep 07 2005

Keywords

Comments

Sequence given by the Hankel transform (see A001906 for definition) of A082173 = {1, 1, 12, 155, 2124, 30482, 453432, 6936799, ...}; example : det([1, 1, 12, 155; 1, 12, 155, 2124; 12, 155, 2124, 30482; 155, 2124, 30482, 453432]) = 11^6 = 1771561.

Crossrefs

Programs

  • Mathematica
    Table[11^((n^2-n)/2),{n,0,20}] (* Harvey P. Dale, Feb 02 2012 *)
    Join[{1,1},Table[Det[Table[Binomial[11i,j],{i,n},{j,n}]],{n,10}]] (* Harvey P. Dale, Apr 01 2019 *)

Formula

a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(11i, j).
a(n) = A001020(A161680(n)).

Extensions

a(11) from Harvey P. Dale, Feb 02 2012
a(12) from Jason Yuen, Aug 29 2025

A220790 Product(6^n - 6^k, k=0..n-1).

Original entry on oeis.org

1, 5, 1050, 8127000, 2273284440000, 22906523331216000000, 8310241106635054164480000000, 108537128570336598656772717772800000000, 51032497739317419104816901041614046625792000000000
Offset: 0

Views

Author

Vincenzo Librandi, Jan 28 2013

Keywords

Crossrefs

Sequences given by product(m^n-m^k, k=0..n-1): A002884 (m=2), A053290 (m=3), A053291 (m=4), A053292 (m=5), A053293 (m=7), A052496 (m=8), A052497 (m=9), A052498 (m=11).

Programs

  • Magma
    [1] cat [&*[(6^n - 6^k): k in [0..n-1]]: n in [1..8]]; // Bruno Berselli, Jan 28 2013
    
  • Magma
    /* By the second formula: */
    m:=9;
    A109354 := [6^(n*(n-1) div 2): n in [0..m-1]];
    A027873 := [1] cat [&*[6^i-1: i in [1..n]]: n in [1..m]];
    [A109354[i]*A027873[i]: i in [1..m]]; // Bruno Berselli, Jan 30 2013
  • Mathematica
    Table[Product[6^n - 6^k, {k, 0, n-1}], {n, 0, 60}]

Formula

a(n) = (6^n - 1)*(6^n - 6)*...*(6^n - 6^(n-1)) for n>0, a(0)=1.
a(n) = A109354(n)*A027873(n). - Bruno Berselli, Jan 30 2013
Showing 1-5 of 5 results.