OFFSET
1,3
LINKS
Danny Rorabaugh, Table of n, a(n) for n = 1..4000
FORMULA
Additive with a(p^e) = F(p).
EXAMPLE
12 = 2^2 * 3^1, so a(12) = F(2) + F(3) = 1 + 2 = 3.
MATHEMATICA
b[t_]:=Fibonacci[First[t]] a[n_]:=Apply[Plus, Map[b, FactorInteger[n]]] (* Esa Peuha, Oct 26 2005 *)
PROG
(Sage) [0]+[sum([fibonacci(p) for p in prime_factors(n)]) for n in range(2, 53)] # Danny Rorabaugh, Apr 03 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Leroy Quet, Oct 16 2005
EXTENSIONS
More terms from Esa Peuha (esa.peuha(AT)helsinki.fi), Oct 26 2005
STATUS
approved