OFFSET
1,2
EXAMPLE
The divisors of 12 are 1,2,3,4,6,12. The floor of the square roots of these are 1,1,1,2,2,3. So a(12) = a(1) + a(1) + a(1) + a(2) + a(2) + a(3) = 1 + 1 + 1 + 2 + 2 + 2 = 9.
MAPLE
A133438 := proc(n) option remember ; local a, d; if n = 1 then 1; else a := 0 ; for d in numtheory[divisors](n) do a := a+ procnamefloor(sqrt(d))) ; od: RETURN(a) ; fi ; end:
seq(A133438(n), n=1..60) ; # R. J. Mathar, Jan 08 2008
CROSSREFS
KEYWORD
nonn
AUTHOR
Leroy Quet, Nov 26 2007
EXTENSIONS
More terms from R. J. Mathar and Matthew Conroy, Jan 08 2008
STATUS
approved