OFFSET
1,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..353
EXAMPLE
a(4) floor[1357/(1+2+3+4)] = floor[135.7] = 135.
MAPLE
for i from 1 to 33 do n := 2*i-1:c := n:n := n-2:while(n>0) do g := floor(log(c)/log(10)):c := c+10^(g+1)*n:n := n-2:end do:a[i] := floor(2*c/i/(i+1)):end do:q2 := seq(a[j], j=1..33);
MATHEMATICA
With[{nn=20}, Table[Floor[FromDigits[Flatten[IntegerDigits/@Range[1, 2n-1, 2]]]/((n(n+1))/2)], {n, nn}]] (* Harvey P. Dale, Feb 22 2020 *)
CROSSREFS
KEYWORD
easy,nonn,base,less
AUTHOR
Amarnath Murthy, Jan 08 2002
EXTENSIONS
More terms from Sascha Kurz, Mar 23 2002
Edited by Charles R Greathouse IV, Apr 27 2010
STATUS
approved