[go: up one dir, main page]

login
Revision History for A363248 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Nonprime base-10 palindromes whose arithmetic derivative is a base-10 palindrome.
(history; published version)
#6 by N. J. A. Sloane at Thu May 25 07:52:16 EDT 2023
STATUS

proposed

approved

#5 by Robert C. Lyons at Tue May 23 15:25:07 EDT 2023
STATUS

editing

proposed

#4 by Robert C. Lyons at Tue May 23 15:25:04 EDT 2023
NAME

Non-prime Nonprime base-10 palindromes whose arithmetic derivative is a base-10 palindrome.

COMMENTS

Non-prime Nonprime members k of A002113 such that A003415(k) is also in A002113.

STATUS

proposed

editing

#3 by Robert Israel at Tue May 23 11:11:07 EDT 2023
STATUS

editing

proposed

#2 by Robert Israel at Tue May 23 11:10:52 EDT 2023
NAME

allocated for Robert IsraelNon-prime base-10 palindromes whose arithmetic derivative is a base-10 palindrome.

DATA

0, 1, 4, 6, 9, 121, 222, 717, 989, 1331, 10201, 13231, 15251, 15751, 15851, 18281, 19291, 28882, 28982, 31613, 34043, 35653, 37073, 37673, 37873, 38383, 38683, 40304, 41814, 50405, 97079, 98789, 99899, 536635, 913319, 980089, 1030301, 1115111, 1226221, 1336331, 1794971, 2630362, 2882882, 3303033

OFFSET

1,3

COMMENTS

Non-prime members k of A002113 such that A003415(k) is also in A002113.

A003415(p) = 1 is a palindrome for all primes p. It seems that most members of A363246 are primes.

EXAMPLE

a(7) = 222 is a term because it is a palindrome, is not prime, and its arithmetic derivative 191 is 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:

palis:= proc(d) local x, y;

if d::even then seq(10^(d/2)*x+rev(x), x=10^(d/2-1)..10^(d/2)-1)

else seq(seq(10^((d+1)/2)*x+10^((d-1)/2)*y+rev(x), y=0..9), x=10^((d-3)/2) ..10^((d-1)/2)-1)

fi

end proc:

palis(1):= $0..9:

filter:= proc(n) local d;

if isprime(n) then return false fi;

d:= ader(n);

d = rev(d)

end proc:

select(filter, [seq(palis(i), i=1..7)]);

CROSSREFS

Cf. A002113, A003415. Complement of A002385 in A363246.

KEYWORD

allocated

nonn,base

AUTHOR

Robert Israel, May 23 2023

STATUS

approved

editing

#1 by Robert Israel at Tue May 23 11:10:52 EDT 2023
NAME

allocated for Robert Israel

KEYWORD

allocated

STATUS

approved