OFFSET
1,3
LINKS
Danny Rorabaugh, Table of n, a(n) for n = 1..4000
FORMULA
Multiplicative with a(p^e) = F(p). - Franklin T. Adams-Watters, Jun 05 2006
EXAMPLE
63 = 3^2 * 7^1. So a(63) = F(3) * F(7) = 2 * 13 = 26.
MATHEMATICA
b[t_]:=Fibonacci[First[t]] a[n_]:=Apply[Times, Map[b, FactorInteger[n]]] (* Esa Peuha, Oct 26 2005 *)
Table[Times@@(Fibonacci[#]&/@FactorInteger[n][[All, 1]]), {n, 60}] (* Harvey P. Dale, May 31 2019 *)
PROG
(Sage) [1]+[prod([fibonacci(p) for p in prime_factors(n)]) for n in range(2, 53)] # Danny Rorabaugh, Apr 03 2015
CROSSREFS
KEYWORD
nonn,mult,easy
AUTHOR
Leroy Quet, Oct 16 2005
EXTENSIONS
More terms from Esa Peuha (esa.peuha(AT)helsinki.fi), Oct 26 2005
STATUS
approved