OFFSET
1,2
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 1..10000 (terms 1..100 from Indranil Ghosh)
FORMULA
G.f.: Sum_{k>=2} Fibonacci(k)^2*x^Fibonacci(k)/(1 - x^Fibonacci(k)). - Ilya Gutkovskiy, Mar 21 2017
MATHEMATICA
nmax = 100; With[{fibs = Fibonacci[Range[2, Floor[Log[nmax*Sqrt[5]] / Log[GoldenRatio]] + 1]]}, Table[Total[Select[fibs, Divisible[n, #1] & ]^2], {n, 1, nmax}]] (* Harvey P. Dale, Apr 25 2011, fixed by Vaclav Kotesovec, Apr 29 2019 *)
PROG
(Python)
from sympy import divisors, fibonacci
l = [fibonacci(n) for n in range(1, 21)]
def a(n):
return sum(i**2 for i in divisors(n) if i in l)
print([a(n) for n in range(1, 101)]) # Indranil Ghosh, Mar 22 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by Ilya Gutkovskiy, Mar 21 2017
b-file corrected by Vaclav Kotesovec, Apr 29 2019
STATUS
approved