OFFSET
0,1
COMMENTS
Also numbers m such that floor(1+(m/9)) mod 9 = 0.
Partial sums of the sequence 72,1,1,1,1,1,1,1,1,73,1,1,1,1,1,1,1,1,73, ... which has period 9.
FORMULA
a(n)=9n+72-8*(n mod 9).
G.f.: g(x)=(72+x+x^2+x^3+x^4+x^5+x^6+x^7+x^8+x^9)/((1-x^9)(1-x)).
G.f.: g(x)=(72-71x-x^10) /((1-x^9)(1-x)^2).
MATHEMATICA
Select[Range[500], Divisible[Binomial[#+9, #], 9]&] (* Harvey P. Dale, Apr 03 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Hieronymus Fischer, Oct 20 2007
STATUS
approved