|
| |
|
|
A001046
|
|
a(n) = n(n-1)a(n-1)/2 + a(n-2).
(Formerly M1811 N0717)
|
|
0
| |
|
|
1, 1, 2, 7, 44, 447, 6749, 142176, 3987677, 143698548, 6470422337, 356016927083, 23503587609815, 1833635850492653, 166884365982441238, 17524692064006822643, 2103129932046801158398, 286043195450428964364771
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,3
|
|
|
REFERENCES
| N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
|
|
|
EXAMPLE
| a(4) = 4*3*7/2 + 2 = 44.
|
|
|
MATHEMATICA
| RecurrenceTable[{a[0]==a[1]==1, a[n]==n(n-1) a[n-1]/2+a[n-2]}, a[n], {n, 20}] (* From Harvey P. Dale, Sep 07 2011 *)
|
|
|
CROSSREFS
| Cf. A001052.
Sequence in context: A196793 A128579 A194453 * A158257 A172389 A153522
Adjacent sequences: A001043 A001044 A001045 * A001047 A001048 A001049
|
|
|
KEYWORD
| nonn,easy
|
|
|
AUTHOR
| N. J. A. Sloane (njas(AT)research.att.com).
|
|
|
EXTENSIONS
| More terms from James A. Sellers (sellersj(AT)math.psu.edu), Oct 05 2000
|
| |
|
|