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.

A222814 Numbers (not ending in 0) which are 9 times their digit-reversal.

Original entry on oeis.org

9801, 98901, 989901, 9899901, 98019801, 98999901, 980109801, 989999901, 9801009801, 9890198901, 9899999901, 98010009801, 98901098901, 98999999901, 980100009801, 980198019801, 989010098901, 989901989901, 989999999901, 9801000009801, 9801989019801, 9890100098901
Offset: 1

Views

Author

N. J. A. Sloane, Mar 11 2013

Keywords

Comments

There are Fibonacci(floor((n-2)/2)) terms with n digits (this is essentially A103609). - Ray Chandler, Oct 12 2017

Crossrefs

Equals 9*A001232.

Programs

  • Mathematica
    okQ[t_]:=t==Reverse[t]&&First[t]!=0&&Min[Length/@Split[t]]>1; Sort[ Flatten[ (9*99)#&/@Flatten[Table[FromDigits/@Select[Tuples[{0,1},n],okQ],{n,12}]]]] (* Harvey P. Dale, Jul 03 2013 *)