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.

A353159 Integers k for which there exists some integer m such that the sum of the digits of m^k is equal to m + k.

This page as a plain text file.
%I A353159 #30 Apr 30 2022 09:16:19
%S A353159 2,3,6,9,12,15,18,20,21,24,27,30,33,36,38,39,42,45,48,51,54,56,57,63,
%T A353159 66,69,72,74,75,78,81,84,87,90,92,93,96,99,102,105,108,110,111,114,
%U A353159 117,120,123,126,129,132,135,141,144,146,147,150,153,156,159,162
%N A353159 Integers k for which there exists some integer m such that the sum of the digits of m^k is equal to m + k.
%C A353159 Letting t = m^k, this sequence consists of the integers k for which there exists some integer m such that s(t) = m + k, where s(t) = A007953(t) represents the sum of digits of t. Rearranging gives m = t^(1/k) = s(t) - k; this allows you to find numbers which follow a common online trick like 64^(1/2) = (6 + 4) - 2 or 216^(1/3) = (2 + 1 + 6) - 3. This online trick was the original motivation for this sequence.
%H A353159 Samuel Owen, <a href="/A353159/b353159.txt">Table of n, a(n) for n = 1..366</a>
%H A353159 Samuel Owen, <a href="/A353159/a353159.txt">Every value of m, for each integer k for k = 2..999</a>
%F A353159 For any given k, the value of m is bounded by 0 < m < x, where x is the maximum solution to the equation x = 10^(1/k)*k*floor(9*log_10(x)-1).
%e A353159 s(62^9) = 62 + 9, so 9 is a term.
%e A353159 s(2157^156) = 2157 + 156, so 156 is a term.
%e A353159 s(18045^999) = 18045 + 999,  so 999 is a term.
%Y A353159 Cf. A007953, A133509.
%K A353159 nonn,base
%O A353159 1,1
%A A353159 _Samuel Owen_, Apr 27 2022