login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A273844 Least number k such that j*Sd(k) = Sd(k^j) for 1 <= j <= n, where Sd(k) is the sum of the digits of k. 0

%I #12 Jun 12 2016 13:14:15

%S 1,2,27,36,405,11682,33651,669024,25274655,40809168,59716233,

%T 7932651138,367732181646

%N Least number k such that j*Sd(k) = Sd(k^j) for 1 <= j <= n, where Sd(k) is the sum of the digits of k.

%C a(14) > 10^12. - _Giovanni Resta_, Jun 02 2016

%e For n=2, 2*Sd(2) = 2*2 = 4 and Sd(2^2) = Sd(4) = 4.

%e For n=3, 2*Sd(27) = 2*9 = 18 and Sd(27^2) = Sd(729) = 18;

%e and 3*Sd(27) = 3*9 = 27 and Sd(27^3) = Sd(19683) = 27.

%p T:=proc(w) local x, y, z; x:=w; y:=0; for z from 1 to ilog10(x)+1 do

%p y:=y+(x mod 10); x:=trunc(x/10); od; y; end:

%p P:=proc(q) local a,j,k,n,ok,t; t:=1; for k from 1 to q do

%p for n from t to q do ok:=1; a:=T(n);

%p for j from 2 to k do if j*a<>T(n^j) then ok:=0; break; fi; od;

%p if ok=1 then t:=n; print(n); break; fi; od; od; end: P(10^20);

%Y Cf. A007953, A124359.

%K nonn,base,more

%O 1,2

%A _Paolo P. Lava_, Jun 01 2016

%E a(12)-a(13) from _Giovanni Resta_, Jun 02 2016

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 07:22 EDT 2024. Contains 371782 sequences. (Running on oeis4.)