login
Convert n from kilometers (km) to miles.
3

%I #23 May 08 2018 15:11:55

%S 0,1,1,2,2,3,4,4,5,6,6,7,7,8,9,9,10,11,11,12,12,13,14,14,15,16,16,17,

%T 17,18,19,19,20,21,21,22,22,23,24,24,25,25,26,27,27,28,29,29,30,30,31,

%U 32,32,33,34,34,35,35,36,37

%N Convert n from kilometers (km) to miles.

%D M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 8.

%H Muniru A Asiru, <a href="/A029922/b029922.txt">Table of n, a(n) for n = 0..1000</a>

%H M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].

%H M. Abramowitz and I. A. Stegun, eds., <a href="http://www.convertit.com/Go/ConvertIt/Reference/AMS55.ASP">Handbook of Mathematical Functions</a>, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 8.

%F a(n) = floor(n/1.609344 + 1/2). - _Lee A. Newberg_, Apr 10 2018

%p [seq(floor(n/1.609344+(1/2)),n=0..60)]; # _Muniru A Asiru_, Apr 10 2018

%t Array[Floor[#/1.609344 + 1/2] &, 60, 0] (* _Michael De Vlieger_, Apr 10 2018 *)

%Y Cf. A029921.

%K nonn,easy

%O 0,4

%A _N. J. A. Sloane_