OFFSET
2,1
COMMENTS
Least of the smallest trio of consecutive numbers divisible by an n-th power.
REFERENCES
J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 1375, p. 135, Ellipses, Paris 2008.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 2..677 (next term has 1001 digits)
FORMULA
5^n < a(n) < 30^n. Can the lower bound be improved? - Charles R Greathouse IV, Jan 16 2012
EXAMPLE
a(3) = 1375 because
1375 = 11 * 5^3;
1376 = 172 * 2^3;
1377 = 51 * 3^3.
MAPLE
with(numtheory):for n from 2 to 6 do: i:=0:for k from 1 to 3000000 while(i=0) do:j:=0:
for a from 0 to 2 do: ii:=0:for m from 1 to 4 while(ii=0) do:p:=ithprime(m)^n:if irem(k+a, p)=0 then j:=j+1:ii:=1:else fi:od:od:if j=3 then i:=1:print(k):else fi:od:od:
PROG
(PARI) a(n)=my(ch, t, best=30^n); forprime(a=2, 29, forprime(b=2, 29, if(a==b, next); ch=chinese(Mod(0, a^n), Mod(-1, b^n)); if(lift(ch)>=best, next); forprime(c=2, 29, if(a==c || b==c, next); t=lift(chinese(ch, Mod(-2, c^n))); if(t<best, best=t)))); best \\ Charles R Greathouse IV, Jan 16 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Mar 08 2010
EXTENSIONS
a(8)-a(18) from Charles R Greathouse IV, Jan 16 2012
STATUS
approved