OFFSET
0,3
COMMENTS
If columns are numbered starting with k=0, then T(n,k) contains the coefficient of 6^k in n's base-6 expansion. - M. F. Hasler, Jul 21 2013
MATHEMATICA
Flatten[Table[Reverse[IntegerDigits[n, 6]], {n, 0, 50}]] (* Harvey P. Dale, Sep 27 2015 *)
PROG
(PARI) A030567(n, k=-1)=/*k<0&&error("Flattened sequence not yet implemented.")*/n\6^k%6 \\ Assuming that columns start with k=0, cf. comment. TO DO: implement flattened sequence, such that A030567(n)=a(n). - M. F. Hasler, Jul 21 2013
CROSSREFS
KEYWORD
nonn,base,tabf,less
AUTHOR
EXTENSIONS
Initial 0 and better name from Philippe Deléham, Oct 20 2011
Edited and crossrefs added by M. F. Hasler, Jul 21 2013
STATUS
approved