OFFSET
-1,1
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).
LINKS
T. D. Noe, Table of n, a(n) for n = -1..100
E. Biondi, L. Divieti, G. Guardabassi, Counting paths, circuits, chains and cycles in graphs: A unified approach, Canad. J. Math. 22 1970 22-35.
MATHEMATICA
Join[{7}, Table[Sum[(n + k)! Binomial[3, k], {k, 0, 3}], {n, 0, 20}]] (* T. D. Noe, Jun 28 2012 *)
PROG
(PARI) a(n) = if (n == -1, 7, sum(k=0, 3, (n+k)!*binomial(3, k))); \\ Michel Marcus, Jun 30 2017
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
EXTENSIONS
More terms from Sean A. Irvine, Jun 19 2012
STATUS
approved