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.

A201918 Automorphic numbers: n^2 ends with n in base 12 (written in base 10).

Original entry on oeis.org

0, 1, 4, 9, 64, 81, 513, 1216, 6400, 14337, 234496, 483328, 2502657, 17432577, 18399232, 412549120, 842530816, 4317249537, 11162091520, 50755272705, 692253097984, 2178269839360, 6737830608897, 46758772080640, 60234433298433, 474731593596928, 809186870951937
Offset: 1

Views

Author

Martin Renner, Dec 06 2011

Keywords

Examples

			a(3) = 4 = (4)_12 since 4^2 = 16 = (14)_12 ends with 4 in base 12.
a(4) = 9 = (9)_12 since 9^2 = 81 = (69)_12 ends with 9 in base 12.
a(5) = 64 = (54)_12 since 64^2 = 4096 = (2454)_12 ends with 54 in base 12.
		

Crossrefs

Programs

  • Mathematica
    a201918[n_Integer] := Module[{i = 0}, Flatten[Last[Reap[
         Do[If[
           IntegerDigits[i^2, 12][[-Length[IntegerDigits[i, 12]] ;; -1]] ==
             IntegerDigits[i, 12], Sow[i]], {i, n}]]]]]; a201918[12^6] (* Michael De Vlieger, Aug 13 2014 *)
  • Sage
    # See A003226. - Eric M. Schmidt, Feb 09 2014

Extensions

More terms from Eric M. Schmidt, Feb 09 2014