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.

A071686 Smallest solution to gcd(x, Rev(x)) = 2^n.

Original entry on oeis.org

2, 4, 8, 2192, 21920, 291008, 610688, 2112256, 2131456, 2937856, 25329664, 230465536, 694018048, 2344321024, 4688642048, 2112421888, 65012891648, 650128916480, 4494196736, 63769149440, 637691494400, 23842827272192, 276298064723968, 420127895977984, 4897795987210240
Offset: 1

Views

Author

Labos Elemer, Jun 03 2002

Keywords

Crossrefs

Programs

  • Mathematica
    a[n_] := Block[{k = 2^n}, While[GCD[k, FromDigits@ Reverse@ IntegerDigits@ k] != 2^n, k += 2^n]; k]; Array[a, 17] (* Giovanni Resta, Nov 14 2019 *)

Formula

a(n) = A069554(2^n).

Extensions

a(22)-a(25) from Giovanni Resta, Oct 29 2019