login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A011266 a(n) = 2^(n*(n-1)/2)*n!. 13
1, 1, 4, 48, 1536, 122880, 23592960, 10569646080, 10823317585920, 24936923717959680, 127677049435953561600, 1438154284846580917862400, 35344079704389572637386342400, 1882001556099335963795547960115200, 215842994465920643015783804449692057600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Let A = the sum of the n-th powers of the first 2^{n-1} terms of A001969, and similarly let B = the sum of the n-th powers of the first 2^{n-1} terms of A000069. Then a(n) = |A-B|. - Jeffrey Shallit, Nov 29 2019
LINKS
Richard P. Stanley, Acyclic Orientations of Graphs, Discrete Mathematics, 5 (1973), pages 171-178, doi:10.1016/0012-365X(73)90108-8.
FORMULA
From Mehdi Naima, Mar 09 2022: (Start)
a(n) = a(n-1)*n*2^(n-1), a(0) = 1.
G.f. satisfies A(x) = 1 + x * (x * A(2*x))'. (End)
MAPLE
a:= n-> 2^(n*(n-1)/2)*n!:
seq(a(n), n=0..15); # Alois P. Heinz, Apr 21 2020
MATHEMATICA
Table[2^((n(n-1))/2) n!, {n, 0, 20}] (* Harvey P. Dale, Dec 16 2012 *)
PROG
(PARI) a(n) = n! << binomial(n, 2); \\ Kevin Ryde, Mar 10 2022
CROSSREFS
Main diagonal of A046860.
Sequence in context: A353922 A332865 A346949 * A360820 A362828 A197927
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 11:36 EDT 2024. Contains 371968 sequences. (Running on oeis4.)