The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A279644 a(n) is the n-th term of the exponential transform of the n-th powers. 5
1, 1, 5, 52, 1445, 104116, 16379797, 6067246144, 5270005429705, 9832425683734288, 40944833826904310921, 384044953998005246634304, 7656468877618298485395299533, 332312769563869315072667521436992, 31885558406529826494376921134421228189 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number of labeled magmas with n elements satisfying the equation x(yz) = xz. - Andrew Howroyd, Apr 24 2023
LINKS
Wikipedia, Kronecker delta
FORMULA
a(n) = n! * [x^n] exp(exp(x)*(Sum_{j=0..n} Stirling2(n,j)*x^j) - delta_{0,n}).
MAPLE
b:= proc(n, k) option remember; `if`(n=0, 1,
add(binomial(n-1, j-1)*j^k*b(n-j, k), j=1..n))
end:
a:= n-> b(n$2):
seq(a(n), n=0..15);
MATHEMATICA
b[n_, k_] := b[n, k] = If[n == 0, 1, Sum[Binomial[n-1, j-1]*j^k*b[n-j, k], {j, 1, n}]];
a[n_] := b[n, n];
Table[a[n], {n, 0, 15}] (* Jean-François Alcover, Jun 01 2018, from Maple *)
CROSSREFS
Main diagonal of A279636.
Cf. A362384.
Sequence in context: A278879 A322195 A216464 * A001173 A277202 A223248
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Dec 16 2016
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 May 12 19:25 EDT 2024. Contains 372494 sequences. (Running on oeis4.)