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.

A183106 Numbers k such that sum of palindromic divisors of k (A088000(k)) is palindromic.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 10, 13, 15, 17, 19, 21, 23, 25, 26, 29, 31, 34, 37, 38, 39, 41, 43, 46, 47, 49, 50, 51, 52, 53, 56, 57, 58, 59, 61, 62, 65, 67, 68, 69, 71, 72, 73, 74, 75, 76, 79, 82, 83, 85, 86, 87, 89, 91, 92, 93, 94, 95, 97, 103, 106, 107, 109, 112, 113, 115, 116, 118, 119
Offset: 1

Views

Author

Jaroslav Krizek, Dec 25 2010

Keywords

Examples

			a(12) = 21; palindromic divisors of 21: 1, 3, 7; their sum is 11 (palindromic number).
		

Crossrefs

Subsequences: A334321, A334391.

Programs

  • Maple
    isA183106 := proc(n)
        isA002113(A088000(n)) ;
    end proc:
    for n from 1 to 100 do
        if isA183106(n) then
            printf("%d,",n) ;
        end if;
    end do: # R. J. Mathar, Sep 09 2015
  • Mathematica
    q[k_] := PalindromeQ[DivisorSum[k, # &, PalindromeQ[#] &]]; Select[Range[120], q] (* Amiram Eldar, Aug 08 2024 *)

Formula

A088000(a(n)) = A183107(n).

Extensions

More terms from Amiram Eldar, Aug 08 2024