cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A363160 Smallest positive integer m with all digits distinct such that m^n contains each digit of m exactly n times, or -1 if no such m exists.

This page as a plain text file.
%I A363160 #106 Sep 10 2023 09:09:35
%S A363160 1,406512,516473892,5702631489,961527834,7025869314,-1,-1,-1,-1,-1,-1,
%T A363160 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
%U A363160 -1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1
%N A363160 Smallest positive integer m with all digits distinct such that m^n contains each digit of m exactly n times, or -1 if no such m exists.
%C A363160 For 7 <= n <= 185, I tried all possibilities with at most 10 distinct digits and I found no solution.
%C A363160 9876543210^186 has only 1859 < 186 * 10 = 1860 digits, so a(n) = -1 for n = 186.
%C A363160 So 9876543210^n has fewer than 10*n digits for n >= 186, so a(n) = -1 for n >= 186.
%e A363160 a(1) = 1, because 1^1 = 1 has each digit of 1, 1 time, and no lesser number > 0 satisfies this.
%e A363160 a(2) = 406512, because 406512 has distinct digits, 406512^2 = 165252006144 has each digit of 406512, 2 times, and no lesser number satisfies this.
%e A363160 n a(n)        a(n)^n
%e A363160 1 1           1
%e A363160 2 406512      165252006144
%e A363160 3 516473892   137766973511455269432948288
%e A363160 4 5702631489  1057550783692741389295697108242363408641
%e A363160 5 961527834   821881685441327565743977956591832631269739424
%e A363160 6 7025869314  120281934463386157260042215510596389732740014997586987548736
%t A363160 hasDistinctDigitsQ[m_Integer?NonNegative]:=Length@IntegerDigits@m==Length@DeleteDuplicates@IntegerDigits@m;validNumberQ[n_Integer?NonNegative,m_Integer?NonNegative]:=AllTrue[Tally@IntegerDigits@m,Function[{digitFreq},MemberQ[Tally@IntegerDigits[m^n],{digitFreq[[1]],n*digitFreq[[2]]}]]];a[n_Integer?Positive,ex_Integer?Positive]:=Module[{m=1},Monitor[While[True,If[hasDistinctDigitsQ[m]&&validNumberQ[n,m],Return[m]];m++;If[m>10^(ex*n),Return[-1]];];m,m]];Table[a[n,7],{n,1,7}] (* _Robert P. P. McKone_, Sep 09 2023 *)
%Y A363160 Cf. A114258, A114259, A114260, A114261, A199630, A199631, A199632, A199633, A365144, A114260.
%K A363160 sign,base
%O A363160 1,2
%A A363160 _Jean-Marc Rebert_, Sep 07 2023