login
A208090
100 written in base -n.
2
110100100, 10201, 13330, 400, 324, 202, 244, 271, 100, 121, 144, 169, 172
OFFSET
2,1
LINKS
Eric Weisstein's World of Mathematics, Base
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}]
CROSSREFS
Cf. A065004.
Sequence in context: A184783 A204953 A205414 * A165698 A345631 A346286
KEYWORD
nonn,fini,full,less
AUTHOR
Radu Borza, Mar 07 2012
STATUS
approved