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!)
A082615 Palindromes such that the GCD of any pair of successive terms is a palindromic prime. 2
2, 4, 6, 8, 22, 33, 44, 55, 66, 77, 88, 99, 111, 141, 171, 222, 232, 242, 252, 262, 272, 282, 292, 414, 424, 434, 444, 454, 464, 474, 484, 494, 606, 616, 626, 636, 646, 656, 666, 676, 686, 696, 717, 747, 777, 828, 838, 848, 858, 868, 878, 888, 898, 2002, 3113 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
From Danny Rorabaugh, Mar 21-24 2015: (Start)
This sequence is generated by setting a(1)=2 and letting a(n+1) be the least palindromic integer strictly greater than a(n) such that GCD(a(n),a(n+1)) is a palindromic prime.
By initiating with a different palindrome, a different sequence is generated: for example, [3, 6, 8, ...] or [151, 1661, 1771, 1881, 1991, 2002, 3113, ...]. 323 is the smallest palindrome greater than 1 whose sequence does not eventually coincide with the present sequence. Indeed, 323 is the smallest palindrome greater than 1 with no palindromic prime factor (thus, as with 1, the sequence beginning with 323 has only one term).
I conjecture that every sequence generated in this fashion, beginning with a palindrome that has a palindromic prime factor, is infinite and eventually coincides with this sequence.
(End)
The sequence, started with any palindrome having a palindromic prime factor, is certainly infinite: if a(n) is a palindrome divisible by palindromic prime p, then M = p*(1+10^m) for large enough m is another palindrome; if m is divisible by the order of 10 mod q for every prime q other than 2 and 5 dividing a(n), then gcd(M,a(n)) = p. - Robert Israel, Mar 24 2015
LINKS
PROG
(PARI) ispal(n) = d = digits(n); Vecrev(d) == d;
lista(nn) = {prev = 2; print1(prev, ", "); for (n=2, nn, k = prev+1; while(!(ispal(k) && (p=gcd(prev, k)) && isprime(p) && ispal(p)), k++); print1(k, ", "); prev = k; ); } \\ Michel Marcus, Mar 24 2015
CROSSREFS
Sequence in context: A165931 A321600 A081939 * A277258 A029951 A062287
KEYWORD
easy,nonn,base
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Apr 29 2003
EXTENSIONS
Corrected and extended by Jason Earls, May 18 2004
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 25 09:38 EDT 2024. Contains 371967 sequences. (Running on oeis4.)