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.
%I A097385 #22 Jul 22 2025 10:32:59 %S A097385 1,2,6,30,260,3130,46662,823550,16777224,387420498,11,12,14,16,18,20, %T A097385 22,24,26,28,21,23,26,32,40,50,62,76,92,110,31,34,41,60,98,160,252, %U A097385 380,550,768,41,45,58,107,300,670,1342,2448,4144,6610,51,56,77,178,679,3180 %N A097385 a(n) = (largest digit of n)^(smallest digit of n) + n. %H A097385 Mia Boudreau, <a href="/A097385/b097385.txt">Table of n, a(n) for n = 0..10000</a> %F A097385 a(n) = A054055(n)^A054054(n) + n. - _Mia Boudreau_, Jul 17 2025 %e A097385 a(2345) = 2370 because 5^2 + 2345 = 2370. %o A097385 (Python) %o A097385 def a(n): return int(max(s:=str(n)))**int(min(s)) + n %o A097385 print([a(n) for n in range(56)]) # _Michael S. Branicky_, Jul 21 2025 %Y A097385 Cf. A054054, A054055, A097386, A097387. %K A097385 base,easy,look,nonn %O A097385 0,2 %A A097385 _Jason Earls_, Aug 18 2004 %E A097385 a(0) corrected and 2 terms merged by _Mia Boudreau_, Jul 16 2025