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!)
A363246 Base-10 palindromes whose arithmetic derivative is also a base-10 palindrome. 2
0, 1, 2, 3, 4, 5, 6, 7, 9, 11, 101, 121, 131, 151, 181, 191, 222, 313, 353, 373, 383, 717, 727, 757, 787, 797, 919, 929, 989, 1331, 10201, 10301, 10501, 10601, 11311, 11411, 12421, 12721, 12821, 13231, 13331, 13831, 13931, 14341, 14741, 15251, 15451, 15551, 15751, 15851, 16061, 16361, 16561 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Members k of A002113 such that A003415(k) is also in A002113.
LINKS
EXAMPLE
a(12) = 121 is a term because 121 is a palindrome and its arithmetic derivative 22 is also a palindrome.
MAPLE
ader:= proc(n) local t;
n*add(t[2]/t[1], t=ifactors(n)[2])
end proc:
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 d;
if n <> rev(n) then return false fi;
d:= ader(n);
d = rev(d)
end proc:
select(filter, [$0..20000]);
PROG
(PARI) ad(n) = vecsum([n/f[1]*f[2]|f<-factor(n+!n)~]); \\ A003415
ispal(q) = my(d=digits(q)); d == Vecrev(d); \\ A002113
isok(q) = ispal(q) && ispal(ad(q)); \\ Michel Marcus, May 25 2023
CROSSREFS
Cf. A002113, A003415. Includes A002385.
Sequence in context: A263362 A336733 A072966 * A245761 A371248 A059759
KEYWORD
nonn,base
AUTHOR
Robert Israel, May 23 2023
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 28 05:00 EDT 2024. Contains 372020 sequences. (Running on oeis4.)