OFFSET
1,1
COMMENTS
The sequence a(n) shows an interesting property : a(n) - a(n-1) == 0 mod 10^(n-1), for example a(7) - a(6) = 5103000000 == 0 mod 10^6.
EXAMPLE
a(2) = 548 = 2 ^ 2 * 137 ; 549 = 3 ^ 2 * 61 ; 550 = 2 * 5 ^ 2 * 11.
MAPLE
with(numtheory): for k from 1 to 4 do: kk:=0:for n from 1 to 600000 do: xx:=2^k:yy:=3^k:
zz:=5^k:if irem(n, xx) =0 and irem(n+1, yy) =0 and irem(n+2, zz) =0 and kk=0 then
kk:=1:print(k):print(n):else fi:od:od:
MATHEMATICA
Table[ChineseRemainder[{0, -1, -2}, {2^n, 3^n, 5^n}], {n, 15}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Feb 03 2011
STATUS
approved
