login
Convert n from nautical miles to statute miles.
2

%I #19 Sep 15 2024 19:38:07

%S 0,1,2,3,5,6,7,8,9,10,12,13,14,15,16,17,18,20,21,22,23,24,25,26,28,29,

%T 30,31,32,33,35,36,37,38,39,40,41,43,44,45,46,47,48,49,51,52,53,54,55,

%U 56,58,59,60,61,62,63,64

%N Convert n from nautical miles to statute 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 Harvey P. Dale, <a href="/A029927/b029927.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.

%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Mile">Mile</a>

%t f[n_] := Round[185200 n/(2.54*12*5280)]; Array[f, 57, 0] (* _Robert G. Wilson v_, Sep 28 2016 *)

%t #[[1]]&/@Table[UnitConvert[Quantity[n,"NauticalMiles"],"Miles"],{n,0,60}]//Round (* _Harvey P. Dale_, Sep 15 2024 *)

%o (PARI) a(n) = round(185200*n/(2.54*12*5280));

%o (PARI) a(n) = 57875*n \/ 50292 \\ _Charles R Greathouse IV_, Oct 12 2016

%K nonn,easy

%O 0,3

%A _N. J. A. Sloane_.