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!)
A209192 Numbers n such that digital root of n equals largest prime factor of n. 1
2, 3, 5, 7, 12, 48, 50, 70, 128, 192, 196, 320, 448, 500, 700, 768, 1960, 2401, 3072, 3200, 4480, 5000, 5488, 7000, 8192, 8575, 12288, 12544, 19600, 20480, 24010, 28672, 30625, 32000, 44800, 49152, 50000, 54880, 67228, 70000, 78125, 85750, 109375, 125440 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
A010888 := proc(n)
d := (add(d, d=convert(n, base, 10))) mod 9 ;
if d = 0 then
return 9;
else
return d;
end if;
end proc:
isA209192 := proc(n)
A010888(n) = A006530(n) ;
end proc:
for n from 2 to 40000 do if isA209192(n) then printf("%d, ", n) ; end if; end do: # R. J. Mathar, Mar 22 2012
CROSSREFS
Sequence in context: A060528 A273728 A117593 * A052021 A217396 A126057
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Mar 05 2012
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 April 25 11:24 EDT 2024. Contains 371967 sequences. (Running on oeis4.)