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
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
