OFFSET
1,2
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..16384
FORMULA
a(n) = A058190(n) + n.
EXAMPLE
a(4) = 5 since the possibilities are (4), (1,4), (2,4), (3,4) and (1,2,4).
PROG
(PARI)
ends_max_progression_of_length(n, ratio) = { my(k=1); while(1, if(denominator(n)>1, return(k)); n *= ratio; k++; ) };
A058190(n) = sum(d=1, (n-1), max(0, ends_max_progression_of_length(d, d/n)-2));
CROSSREFS
KEYWORD
nonn
AUTHOR
Henry Bottomley, Nov 22 2000
STATUS
approved