|
| |
|
|
A072524
|
|
Sum of the remainders when the n-th triangular number is divided by all smaller triangular numbers > 1.
|
|
1
| |
|
|
0, 0, 0, 5, 8, 10, 33, 35, 37, 86, 87, 122, 112, 207, 215, 255, 354, 389, 448, 493, 633, 710, 681, 1016, 1042, 1214, 1420, 1518, 1645, 1654, 2050, 2180, 2276, 2828, 2654, 3124, 3131, 3751, 3770, 4267, 4465, 4971, 5170, 5759, 6282, 6315, 6807, 7587, 7419
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,4
|
|
|
EXAMPLE
| The eighth triangular number is 36; division by 3, 6, 10, 15,21, 28 gives the remainders 0, 0, 6, 6, 15, 8, so a(8) = 0 + 0 + 6+ 6 + 15 + 8 = 35.
|
|
|
PROG
| (PARI) for(n=1, 50, s=0; for(j=2, n-1, s=s+binomial(n+1, 2)%binomial(j+1, 2)); print1(s, ", "))
|
|
|
CROSSREFS
| Sequence in context: A157482 A185001 A057154 * A187878 A191233 A189577
Adjacent sequences: A072521 A072522 A072523 * A072525 A072526 A072527
|
|
|
KEYWORD
| nonn
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Jul 31 2002
|
|
|
EXTENSIONS
| Edited and extended by Klaus Brockhaus (klaus-brockhaus(AT)t-online.de), Aug 02 2002
|
| |
|
|