OFFSET
1,1
COMMENTS
This sequence is included in A273227.
The primes of the sequence are 19, 71, 431, 19979,...
EXAMPLE
a(5) = 24 because A090206(8) = 144 = 1*144 = 2*72 = 3*48 = 4*36 = 6*24 = 8*18 = 9*16 = 12*12 and the minimum sum of {145, 74, 51, 40, 30, 26, 25, 24} is 24.
MATHEMATICA
Function[n, Min@ Map[# + n/# &, Take[#, Ceiling[Length[#]/2]]] &@ Divisors@ n] /@ Select[Fibonacci@ Range@ 55, CompositeQ] (* Michael De Vlieger, May 24 2017 *)
PROG
(PARI) for(n=1, 100, d=divisors(fibonacci(n)); t=#d; k=if(t%2, 2*d[t\2+1], d[t\2]+d[t\2+1]); print1(k", ")).
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, May 22 2017
STATUS
approved