The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A046354 Composite palindromes whose sum of prime factors is palindromic (counted with multiplicity). 3

%I #16 Oct 10 2019 22:53:22

%S 4,6,8,9,121,292,444,575,717,828,989,1331,2002,4884,5445,8668,9559,

%T 10201,11211,11811,13231,14241,14541,14641,15251,15751,16261,16761,

%U 18281,19291,19591,20002,21112,21312,22022,22922,23832,26062,26162

%N Composite palindromes whose sum of prime factors is palindromic (counted with multiplicity).

%H R. J. Mathar and Giovanni Resta, <a href="/A046354/b046354.txt">Table of n, a(n) for n = 1..10000</a> (first 681 terms from R. J. Mathar)

%F A046352 INTERSECT A002113. - _R. J. Mathar_, Sep 09 2015

%e 15751 = 19 * 829 -> 19 + 829 = 848 and 848 is a palindrome.

%p n := 1 ;

%p for i from 3 to 30000 do

%p pal := A002113(i) ;

%p if not isprime(pal) then

%p sof := A001414(pal) ;

%p if isA002113(sof) then

%p printf("%d %d\n",n,pal) ;

%p n := n+1 ;

%p end if;

%p end if;

%p end do: # _R. J. Mathar_, Sep 09 2015

%t palQ[n_]:=Reverse[x=IntegerDigits[n]]==x; Select[Range[4,26170],!PrimeQ[#]&&And@@palQ/@{#,Total[Times@@@FactorInteger[#]]}&](* _Jayanta Basu_, Jun 05 2013 *)

%Y Cf. A046352, A046353.

%K nonn,base

%O 1,1

%A _Patrick De Geest_, Jun 15 1998

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 15 22:47 EDT 2024. Contains 372549 sequences. (Running on oeis4.)