cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A062687 Numbers all of whose divisors are palindromic.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 22, 33, 44, 55, 66, 77, 88, 99, 101, 121, 131, 151, 181, 191, 202, 242, 262, 303, 313, 353, 363, 373, 383, 393, 404, 484, 505, 606, 626, 707, 727, 757, 787, 797, 808, 909, 919, 929, 939, 1111, 1331, 1441, 1661, 1991, 2222, 2662
Offset: 1

Views

Author

Erich Friedman, Jul 04 2001

Keywords

Examples

			The divisors of 44 are 1, 2, 4, 11, 22 and 44, which are all palindromes, so 44 is in the sequence.
808 has divisors are 1, 2, 4, 8, 101, 202, 404, 808, so 808 is in the sequence.
818 is palindromic, but since it's 2 * 409, it's not in the sequence.
		

Crossrefs

Cf. A087991, A084325, A002385 (subset).
Subsequence of A002113.

Programs

  • Maple
    isA062687 := proc(n)
        for d in numtheory[divisors](n) do
            if not isA002113(d) then
                return false;
            end if;
        end do;
        true ;
    end proc: # R. J. Mathar, Sep 09 2015
  • Mathematica
    palQ[n_] := Module[{idn = IntegerDigits[n]}, idn == Reverse[idn]]; Select[Range[2750], And@@palQ/@Divisors[#] &] (* Harvey P. Dale, Feb 27 2012 *)
  • PARI
    isok(n) = {d = divisors(n); rd = vector(#d, i, subst(Polrev(digits(d[i])), x, 10)); (d == rd);} \\ Michel Marcus, Oct 10 2014

A330616 Palindromes that are the product of 2 non-palindromic numbers.

Original entry on oeis.org

252, 272, 323, 414, 434, 444, 464, 494, 525, 555, 575, 585, 595, 636, 646, 656, 666, 676, 686, 696, 767, 777, 828, 848, 868, 888, 949, 969, 989, 999, 2002, 2112, 2772, 2992, 3003, 3553, 4004, 4224, 4554, 4774, 4884, 5005, 5115, 5225, 5775, 6006, 6336, 6996, 7007
Offset: 1

Views

Author

Bernard Schott, Mar 01 2020

Keywords

Examples

			272=16*17 is a term but 282=6*47 is not a term.
		

Crossrefs

Subsequence of A084325 (palindromes such that at least one divisor is non-palindromic).
Cf. A062687 (numbers all of whose divisors are palindromic).

Programs

  • Mathematica
    seqQ[n_] := PalindromeQ[n] && AnyTrue[Divisors[n], ! PalindromeQ[#] && ! PalindromeQ[n/#] &]; Select[Range[7007], seqQ] (* Amiram Eldar, Mar 01 2020 *)

Extensions

More terms from Amiram Eldar, Mar 01 2020
Showing 1-2 of 2 results.