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!)
A357678 Numbers k equal to the integer log of the sum of k and its digit reversal. 0
8, 17, 107 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
10^n + 7 is a term if 10^n + 1 is prime, however that is conjectured to occur only for n = 0, 1 and 2.
No further terms < 2*10^8.
LINKS
EXAMPLE
a(3) = 107 is a term because the integer log of (107 + 701 = 808 = 2^3*101) is 3*2 + 101 = 107.
MAPLE
rev:= proc(n) local L, i; L:= convert(n, base, 10): add(L[-i]*10^(i-1), i=1..nops(L)) end proc:
filter:= proc(n) local s, t;
s:= n + rev(n);
n = add(t[1]*t[2], t=ifactors(s)[2])
end proc:
select(filter, [$1..10^6]);
CROSSREFS
Sequence in context: A350683 A177129 A177178 * A097405 A192282 A088588
KEYWORD
nonn,base,bref,more
AUTHOR
J. M. Bergot and Robert Israel, Oct 08 2022
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 July 20 03:14 EDT 2024. Contains 374441 sequences. (Running on oeis4.)