OFFSET
0,3
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..50
FORMULA
E.g.f.: Sum_{k>=0} log(B(k,x))^k/k! where B(k,x) = Sum_{j>=0} j^(j*k)*x^j/j!.
EXAMPLE
One of the a(7) magmas is shown below. In this example there is a grouping {{1,2,3}, {4,5}, {6,7}}.
x/y| 1 2 3 4 5 6 7
---+--------------
1 | 1 1 1 2 2 3 3
2 | 3 3 3 2 2 1 1
3 | 3 3 3 1 1 3 3
4 | 5 5 5 4 4 5 5
5 | 4 4 4 4 4 5 5
6 | 6 6 6 7 7 7 7
7 | 6 6 6 7 7 6 6
PROG
(PARI)
B(n, k)=log(sum(j=0, n, j^(j*k)*x^j/j!, O(x*x^n)))
seq(n)=Vec(serlaplace(sum(k=0, n, B(n-k+1, k)^k/k!)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Andrew Howroyd, Apr 25 2023
STATUS
approved