OFFSET
1,2
COMMENTS
From solution to a difference equation.
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..200
P. R. J. Asveld & N. J. A. Sloane, Correspondence, 1987
P. R. J. Asveld, Another family of Fibonacci-like sequences, Fib. Quart., 25 (1987), 361-364.
MATHEMATICA
Join[{1}, Table[n!Fibonacci[n+2], {n, 2, 20}]] (* Harvey P. Dale, May 26 2024 *)
PROG
(Magma) [1] cat [Factorial(n)*Fibonacci(n+2): n in [2..20]]; // Vincenzo Librandi, Jul 10 2012
(PARI) a(n)=if(n>1, n!*fibonacci(n+2), 1) \\ Charles R Greathouse IV, Jun 30 2017
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms and better description from Vladeta Jovovic, Jan 23 2005
STATUS
approved