OFFSET
0,3
COMMENTS
Sequence given by the Hankel transform (see A001906 for definition) of A078018 = {1, 1, 7, 55, 469, 4237, 39907, 387739, ...}; example: det([1, 1, 7, 55; 1, 7, 55, 469; 7, 55, 469, 4237; 55, 469, 4237, 39907]) = 6^6 = 46656.
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 6 types of edge. - Mark Stander, Apr 11 2019
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..50
FORMULA
a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(6i, j).
G.f. A(x) satisfies: A(x) = 1 + x * A(6*x). - Ilya Gutkovskiy, Jun 04 2020
MATHEMATICA
Table[6^((n^2-n)/2), {n, 0, 10}] (* Harvey P. Dale, May 28 2013 *)
PROG
(PARI) a(n) = 6^((n^2 - n)/2); \\ Michel Marcus, Apr 12 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
Philippe Deléham, Aug 25 2005
EXTENSIONS
Terms a(11) and beyond from Andrew Howroyd, Jan 02 2020
STATUS
approved