OFFSET
1,4
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..400 (first 100 terms from T. D. Noe)
R. K. Guy, Letter to N. J. A. Sloane, 1986
R. K. Guy, The strong law of small numbers. Amer. Math. Monthly 95 (1988), no. 8, 697-712.
R. K. Guy, The strong law of small numbers. Amer. Math. Monthly 95 (1988), no. 8, 697-712. [Annotated scanned copy]
R. R. Patterson and G. Suri, The derivatives of x^x, date unknown. Preprint. [Annotated scanned copy]
MAPLE
a:= n-> (n-1)! *coeftayl(x^x, x=1, n):
seq(a(n), n=1..30); # Alois P. Heinz, Aug 18 2012
MATHEMATICA
Rest[(NestList[ Factor[ D[ #1, x]] &, x^x, 23] /. (x -> 1))/Range[0, 23]] (* Robert G. Wilson v, Aug 10 2010 *)
PROG
(Python)
from sympy import var, diff
x = var('x')
y = x**x
l = [[y:=diff(y), y.subs(x, 1)/(n+1)][1] for n in range(10)]
print(l) # Nicholas Stefan Georgescu, Mar 02 2023
CROSSREFS
KEYWORD
sign,easy,nice
AUTHOR
EXTENSIONS
One more term from Robert G. Wilson v, Aug 10 2010
STATUS
approved