OFFSET
1,1
FORMULA
a(n) ~ phi^(n-1), where phi = A001622 is the golden ratio. - Vaclav Kotesovec, Dec 10 2021
EXAMPLE
a(4)=7 because the divisors of 4 are 1,2,4 and the first, second and fourth Lucas numbers are 2, 1 and 4, respectively, having sum 7.
MAPLE
with(combinat): with(numtheory): f:=n->2*fibonacci(n)-fibonacci(n-1): g:=proc(n) local div: div:=divisors(n): sum(f(div[j]), j=1..tau(n)) end: seq(g(n), n=1..45);
MATHEMATICA
Table[Total[LucasL[#]&/@(Divisors[n]-1)], {n, 40}] (* Harvey P. Dale, Dec 08 2014 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Emeric Deutsch, May 31 2005
STATUS
approved