OFFSET
0,2
COMMENTS
For n >= 1, a(n) = number whose factorial base representation (A007623) begins with a double digit {n}{n}, which is followed by n-1 zeros. Viewed in that base, this sequence looks like this: 0, 11, 220, 3300, 44000, 550000, 6600000, 77000000, 880000000, 9900000000, AA000000000, BB0000000000, ... (where "digits" A and B stand for placeholder values 10 and 11 respectively). - Antti Karttunen, May 07 2015
LINKS
FORMULA
0 = +a(n) * (+a(n+1) + 2*a(n+2) - 6*a(n+3) + a(n+4)) + a(n+1) * (+5*a(n+2) - 6*a(n+3) + a(n+4)) + a(n+2) * (+3*a(n+2) - a(n+4)) + a(n+3) * (+a(n+3)) if n>=0. - Michael Somos, Mar 26 2014
From Antti Karttunen, May 07 2015: (Start)
a(n) = n * (n! + (n+1)!) = n * A001048(n+1).
a(n) = (n+2)! - (n+1)! - n! [from Orlovsky's Mathematica-code].
(End)
From Amiram Eldar, May 17 2022: (Start)
EXAMPLE
G.f. = 3*x + 16*x^2 + 90*x^3 + 576*x^4 + 4200*x^5 + 34560*x^6 + ...
MATHEMATICA
a[n_]:=(n+2)!-(n+1)!-n!; (* Vladimir Joseph Stephan Orlovsky, Dec 05 2008 *)
PROG
(Magma) [n*(n+2)*Factorial(n): n in [0..25]]; // Vincenzo Librandi, Aug 11 2011
(PARI) a(n)=n!*(n*(n+2)) \\ Charles R Greathouse IV, Aug 11 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Curtz, Jul 12 2007
EXTENSIONS
More terms from Vladimir Joseph Stephan Orlovsky, Dec 05 2008
STATUS
approved