login
A395811
Number of Fibonacci divisors of n that are at most sqrt(n).
1
1, 1, 1, 2, 1, 2, 1, 2, 2, 2, 1, 3, 1, 2, 2, 2, 1, 3, 1, 2, 2, 2, 1, 3, 2, 2, 2, 2, 1, 4, 1, 2, 2, 2, 2, 3, 1, 2, 2, 3, 1, 3, 1, 2, 3, 2, 1, 3, 1, 3, 2, 2, 1, 3, 2, 2, 2, 2, 1, 4, 1, 2, 2, 3, 2, 3, 1, 2, 2, 3, 1, 4, 1, 2, 3, 2, 1, 3, 1, 4, 2, 2, 1, 3, 2, 2, 2
OFFSET
1,4
COMMENTS
Counts the inferior Fibonacci divisors of n. The complementary divisors do not need to be Fibonacci.
Starts to differ from A333749 at n=36.
FORMULA
a(n) <= A038548(n).
EXAMPLE
a(36)=3 counts the factorizations 1*36, 2*18 and 3*12 where 1, 2 and 3 are Fibonacci numbers. Factorizations 4*9 and 6*6 are not counted because 4 and 6 are not Fibonacci numbers.
MAPLE
A395811 := proc(n)
local a, d;
a := 0 ;
for d in numtheory[divisors](n) do
if d^2 <= n and isFib(d) then # isFib coded in A000045
a := a+1 ;
end if;
end do:
a ;
end proc:
seq(A395811(n), n=1..120) ;
PROG
(Python)
from sympy import divisors
from sympy.ntheory.primetest import is_square
isFib = lambda n: (lambda t: is_square(t + 4) or is_square(t - 4))(5 * (n ** 2))
def A395811(n):
a = 0
for i in divisors(n):
if i ** 2 <= n and isFib(i):
a += 1
return a
print([A395811(x) for x in range(1, 88)]) # Aitzaz Imtiaz, May 13 2026, following the Maple program.
CROSSREFS
KEYWORD
nonn,less
AUTHOR
R. J. Mathar, May 07 2026
STATUS
approved