login
A029927
Convert n from nautical miles to statute miles.
2
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, 30, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61, 62, 63, 64
OFFSET
0,3
REFERENCES
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 8.
LINKS
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].
M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards Applied Math. Series 55, Tenth Printing, 1972, p. 8.
Wikipedia, Mile
MATHEMATICA
f[n_] := Round[185200 n/(2.54*12*5280)]; Array[f, 57, 0] (* Robert G. Wilson v, Sep 28 2016 *)
#[[1]]&/@Table[UnitConvert[Quantity[n, "NauticalMiles"], "Miles"], {n, 0, 60}]//Round (* Harvey P. Dale, Sep 15 2024 *)
PROG
(PARI) a(n) = round(185200*n/(2.54*12*5280));
(PARI) a(n) = 57875*n \/ 50292 \\ Charles R Greathouse IV, Oct 12 2016
CROSSREFS
Sequence in context: A039222 A340745 A183295 * A047334 A032775 A057905
KEYWORD
nonn,easy
AUTHOR
STATUS
approved