OFFSET
0,3
COMMENTS
a(n) is the product of first n terms of an arithmetic progression with first term n and common difference n. E.g. a(3) = 3*6*9 = 162. - Amarnath Murthy, Sep 20 2003
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..100 (corrected by Michel Marcus, Jan 19 2019)
FORMULA
E.g.f.: sinh(n*x)^n. - Vaclav Kotesovec, Nov 05 2014
a(n) = [x^n] 1/(1 - n*x/(1 - n*x/(1 - 2*n*x/(1 - 2*n*x/(1 - 3*n*x/(1 - 3*n*x/(1 - ...))))))), a continued fraction. - Ilya Gutkovskiy, Sep 20 2017
Sum_{n>=1} 1/a(n) = A336765. - Amiram Eldar, Nov 20 2020
a(n) ~ exp(-n)*n^(2*n)*sqrt(2*n*Pi). - Peter Luschny, Jan 10 2022
EXAMPLE
a(1) = 1!*1^1 = 1.
a(2) = 2!*2^2 = 8.
a(3) = 3!*3^3 = 162.
MATHEMATICA
Table[If[n == 0, 1, n^n] * n!, {n, 0, 20}] (* Vaclav Kotesovec, Mar 08 2018 *)
PROG
(PARI) a(n) = n!*n^n; \\ Harry J. Smith, Jul 26 2009
(Python)
from math import factorial
def A061711(n): return factorial(n)*n**n # Chai Wah Wu, Sep 03 2022
(Magma) [Factorial(n)*n^n: n in [0..30]]; // G. C. Greubel, Nov 29 2022
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Lorenzo Fortunato (fortunat(AT)pd.infn.it), Jun 19 2001
STATUS
approved