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.

A028980 Numbers whose sum of divisors is palindromic.

Original entry on oeis.org

1, 2, 3, 4, 5, 7, 43, 81, 96, 98, 130, 146, 162, 166, 201, 205, 208, 211, 221, 241, 244, 251, 271, 274, 281, 300, 314, 325, 333, 365, 388, 422, 433, 438, 443, 463, 489, 519, 559, 633, 685, 793, 803, 827, 857, 877, 887, 1376, 1419, 1505, 1548
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Maple
    isA028980 := proc(n)
        isA002113(numtheory[sigma](n)) ;
    end proc:
    for n from 1 to 2000 do
        if isA028980(n) then
            printf("%d,",n) ;
        end if;
    end do: # R. J. Mathar, Sep 09 2015
  • Mathematica
    Select[Range[1550],Reverse[x=IntegerDigits[DivisorSigma[1,#]]]==x&] (* Jayanta Basu, Jun 05 2013 *)
    Select[Range[1600],PalindromeQ[DivisorSigma[1,#]]&] (* Harvey P. Dale, Jul 20 2021 *)