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

A055617
a(n)= A*10^(3*n)+B with A=(10^(3*n)-10^n) and B=10^(2*n).
2
990100, 999900010000, 999999000001000000, 999999990000000100000000, 999999999900000000010000000000, 999999999999000000000001000000000000, 999999999999990000000000000100000000000000
OFFSET
1,1
EXAMPLE
a(2) = (10^6-10^2)*10^6+10^4 = 999900010000.
Note that 999900010000 = 999900^2 + 010000^2 (see A055616).
PROG
(PARI) a(n) = (10^(3*n)-10^n)*10^(3*n) + 10^(2*n) \\ Michel Marcus, Jul 23 2013
CROSSREFS
Subsequence of A055616.
Sequence in context: A106782 A154674 A236034 * A055618 A341551 A216276
KEYWORD
nonn,easy
AUTHOR
Ulrich Schimke (ulrschimke(AT)aol.com)
STATUS
approved