login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A113838 Palindromes sandwiched between twin primes. 0
4, 6, 282, 828, 858, 2112, 21012, 21612, 23832, 26262, 26862, 28182, 80208, 81018, 82728, 84348, 89598, 89898, 240042, 246642, 270072, 276672, 2035302, 2109012, 2136312, 2155512, 2182812, 2422242, 2428242, 2460642, 2499942, 2529252 (list; graph; refs; listen; history; internal format)
OFFSET

1,1

EXAMPLE

282 is a palindrome and 281 and 283 are twin primes.

MATHEMATICA

palQ[n_]:= n == FromDigits@Reverse@IntegerDigits@n; lst={}; Do[If[palQ[n] && PrimeQ[n-1] && PrimeQ[n+1], AppendTo[lst, n]], {n, 2, 10^7, 2}]; lst

palQ[n_]:=Module[{idn=IntegerDigits[n]}, idn==Reverse[idn]]; Mean[#]&/@ Select[ Select[ Partition[Prime[Range[190000]], 2, 1], Last[#]-First[#] == 2&], palQ[Mean[#]]&] (* From Harvey P. Dale, Jan 18 2012 *)

CROSSREFS

Sequence in context: A081970 A076098 A141568 * A056831 A027717 A035481

Adjacent sequences:  A113835 A113836 A113837 * A113839 A113840 A113841

KEYWORD

base,nonn

AUTHOR

Giovanni Resta (g.resta(AT)iit.cnr.it), Jan 24 2006

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 17:13 EST 2012. Contains 205828 sequences.