OFFSET
1,3
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..4782
FORMULA
Additive with a(p^e) = A000045(p^e).
EXAMPLE
12 = 2^2 * 3^1. So a(12) = F(2^2) + F(3^1) = 3 + 2 = 5.
MAPLE
a:= n-> add(combinat[fibonacci](i[1]^i[2]), i=ifactors(n)[2]):
seq(a(n), n=1..50); # Alois P. Heinz, Jan 14 2025
MATHEMATICA
f[n_] := Plus @@ (Fibonacci[ #[[1]]^#[[2]]] & /@ FactorInteger[n]); Table[ f[n], {n, 49}] (* Robert G. Wilson v *)
PROG
(PARI) A113222(n) = if(n<=1, 0, my(f=factor(n)); sum(i=1, #f~, fibonacci(f[i, 1]^f[i, 2]))); \\ Antti Karttunen, Jan 14 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Oct 18 2005
EXTENSIONS
More terms from Robert G. Wilson v, Oct 21 2005
Terms a(49..57) added, and the notation used in the definition simplified by Antti Karttunen, Jan 14 2025
STATUS
approved