OFFSET
1,6
COMMENTS
For the definition of infinitary divisors, see A037445.
The sequence is the partial sums of the characteristic function of the numbers with 3 as one of the infinitary divisors; these are 3, 6, 12, 15, 21, 24, 27, 30 etc, apparently shown in A145204. - R. J. Mathar, Feb 28 2011
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = floor(n/3) - a(floor(n/3)).
a(n) = floor(n/3) - floor(n/9) + floor(n/27) - ....
a(n) grows as n/4 as n tends to infinity.
MAPLE
A186444 := proc(n) local a, k ; option remember; if n< 3 then 0; else floor(n/3) -procname(floor(n/3)) ; end if; end proc: # R. J. Mathar, Feb 28 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Feb 21 2011
STATUS
approved