OFFSET
1,3
LINKS
Danny Rorabaugh, Table of n, a(n) for n = 1..4000
FORMULA
Totally additive with a(p) = A000045(p).
EXAMPLE
12 = 2^2 * 3^1, so a(12) = F(2)*2 + F(3)*1 = 2 + 2 = 4.
MATHEMATICA
b[t_]:=Fibonacci[First[t]]Last[t] a[n_]:=Apply[Plus, Map[b, FactorInteger[n]]] (* Esa Peuha, Oct 26 2005 *)
PROG
(PARI) { for(n=1, 100, f=factor(n); s=0; for(i=1, matsize(f)[1], s+=fibonacci(f[i, 1])*f[i, 2]); print1(s, ", ")) } \\ Lambert Klasen, Oct 26 2005
(Sage) [0]+[sum([fibonacci(x[0])*x[1] for x in factor(n)]) for n in range(2, 56)] # 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) and Lambert Klasen (lambert.klasen(AT)gmx.net), Oct 26 2005
Prefixed the name with a more succinct form of the definition given in comments. - Antti Karttunen, Jul 08 2024
STATUS
approved