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!)
A281921 10th-power analog of Keith numbers. 9
1, 82, 85, 94, 97, 106, 117, 459, 1197, 24615, 24657, 26184, 87664, 117099, 538168, 1049708, 1229174, 2210323, 4587773, 11019224, 96167938, 104719358, 202511251, 226456915, 821871524, 1811437987, 1832881095, 3530066559, 7414362499, 7906250753, 15607432165, 15631766564 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Like Keith numbers but starting from n^10 digits to reach n.
Consider the digits of n^10. Take their sum and repeat the process deleting the first addend and adding the previous sum. The sequence lists the numbers that after some number of iterations reach a sum equal to n.
LINKS
EXAMPLE
106^10 = 179084769654285362176: 1 + 7 + 9 + 0 + 8 + 4 + 7 + 6 + 9 + 6 + 5 + 4 + 2 + 8 + 5 + 3 + 6 + 2 + 1 + 7 + 6 = 106.
MAPLE
with(numtheory): P:=proc(q, h, w) local a, b, k, t, v; global n; v:=array(1..h);
for n from 1 to q do b:=n^w; a:=[];
for k from 1 to ilog10(b)+1 do a:=[(b mod 10), op(a)]; b:=trunc(b/10); od;
for k from 1 to nops(a) do v[k]:=a[k]; od; b:=ilog10(n^w)+1;
t:=nops(a)+1; v[t]:=add(v[k], k=1..b); while v[t]<n do t:=t+1; v[t]:=add(v[k], k=t-b..t-1);
od; if v[t]=n then print(n); fi; od; end: P(10^6, 10000, 4);
MATHEMATICA
(* function keithQ[ ] is defined in A007629 *)
a281921[n_] := Join[{1}, Select[Range[10, n], keithQ[#, 10]&]]
a281921[10^6] (* Hartmut F. W. Hoft, Jun 03 2021 *)
CROSSREFS
Sequence in context: A044982 A181468 A081648 * A303885 A305278 A025370
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Feb 02 2017
EXTENSIONS
a(21) from Jinyuan Wang, Feb 02 2020
a(22)-a(32) from Giovanni Resta, Feb 03 2020
STATUS
approved

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 May 8 23:08 EDT 2024. Contains 372341 sequences. (Running on oeis4.)