OFFSET
1,2
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
The triangle is:
1
2 4
3 6 9
4 8 21 61
5 1 15 2 52
etc
MATHEMATICA
Table[IntegerReverse[n*Range[n]], {n, 20}]//Flatten (* Harvey P. Dale, Jul 14 2024 *)
PROG
(PARI) T(n, k) = subst(Polrev(digits(k*n)), x, 10); \\ Michel Marcus, Sep 16 2013
CROSSREFS
KEYWORD
AUTHOR
Amarnath Murthy, Aug 10 2005
EXTENSIONS
More terms from Bruce Corrigan (scentman(AT)myfamily.com), Aug 10 2005
STATUS
approved