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.

A223081 Numbers n with distinct digits such that n divides the reversal of n.

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 7, 8, 9, 1089, 2178, 21978
Offset: 1

Views

Author

N. J. A. Sloane, Mar 20 2013

Keywords

Comments

The definition implies that n does not end in 0.
There are no terms with 6 digits.
Sequence is complete. - Giovanni Resta, Mar 20 2013

Crossrefs

Programs

  • Mathematica
    Select[FromDigits/@(Flatten[Permutations/@Subsets[Range[0,9],5],1]), Divisible[ IntegerReverse[#],#]&]//Quiet//Union (* Harvey P. Dale, Jan 12 2020 *)