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.

A104341 Numbers n such that n -(digital reversal of n) = 9.

Original entry on oeis.org

10, 21, 32, 43, 54, 65, 76, 87, 98
Offset: 1

Views

Author

Zak Seidov, Mar 02 2005

Keywords

Comments

The sequence is complete: there is no other such number (in base 10). Starting with n=2, A104341(n) = digital reversal of A104341(n-1).

Examples

			98-89=9.
		

Crossrefs

Programs

  • Mathematica
    npdrnQ[n_]:=n-FromDigits[Reverse[IntegerDigits[n]]]==9; Select[Range[100], npdrnQ] (* Harvey P. Dale, Apr 04 2013 *)

Formula

n -(digital reversal of n) = 9