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.

A061211 Largest number m such that m is the n-th power of the sum of its digits.

This page as a plain text file.
%I A061211 #18 Jan 09 2018 03:08:33
%S A061211 9,81,19683,1679616,205962976,68719476736,6722988818432,
%T A061211 248155780267521,150094635296999121,480682838924478847449,
%U A061211 23316389970546096340992,2518170116818978404827136,13695791164569918553628942336,4219782742781494680756610809856
%N A061211 Largest number m such that m is the n-th power of the sum of its digits.
%C A061211 Clearly m = 1 always works, so a(n) exists for all n. - _Farideh Firoozbakht_, Nov 23 2007
%C A061211 105 is the smallest number n such that a(n)=1. This means that if n<105 there exists at least one number m greater than 1 such that m is the n-th power of the sum of its digits while 1 is the only number m such that m is the 105th power of the sum of its digits. A133509 gives n such that a(n) = 1. - _Farideh Firoozbakht_, Nov 23 2007
%D A061211 Amarnath Murthy, The largest and the smallest m-th power whose digits sum /product is its m-th root. To appear in Smarandache Notions Journal.
%D A061211 Amarnath Murthy, e-book, "Ideas on Smarandache Notions", manuscript.
%H A061211 T. D. Noe, <a href="/A061211/b061211.txt">Table of n, a(n) for n = 1..105</a>
%e A061211 a(3) = 19683 = 27^3 and no bigger number can have this property. (This has been established in the Murthy reference.)
%e A061211 a(4) = 1679616 = (1+6+7+9+6+1+6)^4 = 36^4.
%t A061211 meanDigit = 9/2; translate = 900; upperm[1] = translate;
%t A061211 upperm[n_] := Exp[-ProductLog[-1, -Log[10]/(meanDigit*n)]] + translate;
%t A061211 a[n_] := (For[max = m = 1, m <= upperm[n], m++, If[m == Total[ IntegerDigits[ m^n ] ], max = m]]; max^n);
%t A061211 Array[a, 14] (* _Jean-François Alcover_, Jan 09 2018 *)
%Y A061211 Cf. A061209, A061210, A046000, A076090, A046017.
%K A061211 nonn,base
%O A061211 1,1
%A A061211 _Amarnath Murthy_, Apr 21 2001
%E A061211 More terms from Ulrich Schimke, Feb 11 2002
%E A061211 Edited by _N. J. A. Sloane_ at the suggestion of _Farideh Firoozbakht_, Dec 04 2007