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.

A208090 100 written in base -n.

Original entry on oeis.org

110100100, 10201, 13330, 400, 324, 202, 244, 271, 100, 121, 144, 169, 172
Offset: 2

Views

Author

Radu Borza, Mar 07 2012

Keywords

Crossrefs

Cf. A065004.

Programs

  • Mathematica
    (* From MathWorld *) NegativeIntegerDigits[0, n_Integer?Negative] := {0}; NegativeIntegerDigits[i_, n_Integer?Negative] := Rest@Reverse@Mod[NestWhileList[(# - Mod[#, -n])/n &, i, # != 0 &], -n]; Table[FromDigits[NegativeIntegerDigits[100, -n]], {n, 2, 14}]