A060366 Powers of one thousand which are described by single words in dated British English usage, extended by using "-ard" beyond 10^9.
1, 1000, 1000000, 1000000000, 1000000000000, 1000000000000000, 1000000000000000000, 1000000000000000000000, 1000000000000000000000000, 1000000000000000000000000000, 1000000000000000000000000000000
Offset: 1
Examples
10^0 = one, 10^3 = thousand, 10^6 = million, 10^9 = milliard, 10^12 = billion, etc.
References
- John H. Conway and Richard K. Guy, The Book of Numbers, New York: Springer-Verlag, 1996. See p. 14.
Links
- Tanya Khovanova, Non Recursions
- More information about A060365 and A060366.
Crossrefs
Cf. A060365.
Programs
-
Magma
[10^(3*(n-1)) : n in [1..15]]; // Wesley Ivan Hurt, Jan 21 2016
-
Maple
A060366:=n->10^(3*(n-1)): seq(A060366(n), n=1..15); # Wesley Ivan Hurt, Jan 21 2016
-
Mathematica
10^(3 Range[0, 10]) (* or *) Table[10^(3 (n - 1)), {n, 15}] (* Wesley Ivan Hurt, Jan 21 2016 *)
Formula
a(n) = 10^(3*(n-1)).
Extensions
Description changed by Ivan Panchenko, Nov 10 2019