login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A060366
Powers of one thousand which are described by single words in dated British English usage, extended by using "-ard" beyond 10^9.
3
1, 1000, 1000000, 1000000000, 1000000000000, 1000000000000000, 1000000000000000000, 1000000000000000000000, 1000000000000000000000000, 1000000000000000000000000000, 1000000000000000000000000000000
OFFSET
1,2
FORMULA
a(n) = 10^(3*(n-1)).
EXAMPLE
10^0 = one, 10^3 = thousand, 10^6 = million, 10^9 = milliard, 10^12 = billion, etc.
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 *)
PROG
(Magma) [10^(3*(n-1)) : n in [1..15]]; // Wesley Ivan Hurt, Jan 21 2016
CROSSREFS
Cf. A060365.
Sequence in context: A029796 A029802 A060365 * A260692 A234605 A013793
KEYWORD
easy,fini,nonn,word
EXTENSIONS
Description changed by Ivan Panchenko, Nov 10 2019
STATUS
approved