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”).

A070189
a(n) = 12345679*n.
2
0, 12345679, 24691358, 37037037, 49382716, 61728395, 74074074, 86419753, 98765432, 111111111, 123456790, 135802469, 148148148, 160493827, 172839506, 185185185, 197530864, 209876543, 222222222, 234567901, 246913580, 259259259
OFFSET
0,2
COMMENTS
a(82)=1012345678 is the first term which has a digit appearing more than once without an obvious pattern, although a(-82)=-1012345678 might be seen as the concatenation of ten consecutive numbers.
REFERENCES
David Wells, The Penguin Dictionary of Curious and Interesting Numbers. Penguin Books, NY, 1986, Revised edition 1987. See entry 12345679 at p. 188.
FORMULA
a(n) = n*(10^(10-1)-1)/(10-1)^2.
MATHEMATICA
Table[12345679*n, {n, 0, 30}] (* or *) LinearRecurrence[{2, -1}, {0, 12345679}, 30] (* Harvey P. Dale, Oct 16 2015 *)
PROG
(PARI) a(n)=12345679*n \\ Charles R Greathouse IV, Jan 09 2012
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Henry Bottomley, Apr 24 2002
STATUS
approved