OFFSET
0,2
COMMENTS
This sequence is obtained by iterating the shift-difference operator E^2*(E - 1) on f(m) = m^m and evaluating at m = 0, where E is the shift operator.
FORMULA
a(n) = Sum_{k=0..n} (-1)^(n - k)*binomial(n, k)*(2*n + k)^(2*n + k), with 0^0 = 1.
EXAMPLE
The triangular array begins:
m: 0 1 2 3 4 5 ...
-------------------------------------------------------------
n = 0 1 1 4 27 256 ...
n = 1 23 40662 339512814 ...
n = 2 40662 339512814 ...
n = 3 339512814 ...
a(1) = 3^3 - 2^2 = 23.
CROSSREFS
KEYWORD
nonn
AUTHOR
Dalton Heilig, May 18 2026
STATUS
approved
