login
A110748
Form triangle shown below, in which the n-th row contains n terms of an arithmetic progression with first term 1 and common difference n. Then a(n) = terms of the n-th row (mod 10), concatenated.
1
1, 13, 147, 1593, 16161, 173951, 1852963, 19753197, 109876543, 1111111111, 12345678901, 135791357913, 1470369258147, 15937159371593, 161616161616161, 1739517395173951, 18529630741852963, 197531975319753197
OFFSET
1,2
LINKS
EXAMPLE
1
1 3
1 4 7
1 5 9 13
1 6 11 16 21
...
MATHEMATICA
Table[FromDigits[Mod[Range[1, n^2-n+1, n], 10]], {n, 20}] (* Harvey P. Dale, Mar 11 2018 *)
CROSSREFS
Sequence in context: A048442 A353107 A051524 * A211072 A016135 A332691
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Aug 10 2005
EXTENSIONS
More terms from Melissa Ciacchi (mciacchi(AT)ashland.edu), Feb 28 2006
STATUS
approved