A386994 Number of 2-dense sublists of divisors of the n-th Fibonacci number.
1, 1, 1, 1, 2, 2, 1, 2, 4, 2, 4, 2, 1, 2, 4, 4, 8, 2, 3, 4, 8, 4, 4, 2, 1, 6, 4, 4, 12, 2, 1, 4, 16, 4, 4, 8, 1, 8, 8, 4, 3, 4, 1, 2, 11, 6, 8, 2, 1, 8, 10, 4, 12, 4, 3, 13, 5, 10, 8, 4, 1, 4, 8, 10, 17, 8, 7, 8, 20, 9, 15, 4, 1, 4, 16, 18, 24, 15, 7, 4, 3, 5
Offset: 0
Examples
For n = 18 the 18th Fibonacci number is 2584. The list of divisors of 2584 is [1, 2, 4, 8, 17, 19, 34, 38, 68, 76, 136, 152, 323, 646, 1292, 2584]. There are three 2-dense sublists of divisors of 2584, they are [1, 2, 4, 8], [17, 19, 34, 38, 68, 76, 136, 152] and [323, 646, 1292, 2584], so a(18) = 3.
Crossrefs
Programs
-
Mathematica
A386994[n_] := Length[Split[Divisors[Fibonacci[n]], #2 <= 2*# &]]; Array[A386994, 100, 0] (* Paolo Xausa, Sep 02 2025 *)
Extensions
More terms from Alois P. Heinz, Aug 27 2025
Comments