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.

A222815 Numbers (not ending in 0) which are 4 times their digit-reversal.

Original entry on oeis.org

8712, 87912, 879912, 8799912, 87128712, 87999912, 871208712, 879999912, 8712008712, 8791287912, 8799999912, 87120008712, 87912087912, 87999999912, 871200008712, 871287128712, 879120087912, 879912879912, 879999999912, 8712000008712, 8712879128712, 8791200087912
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 4*A008918.

Programs

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