login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A114896 A symmetrical triangle of weight coefficients using the Divisors Sigma function: t(n,m) = Sigma_0(n-m+1)*Sigma_0(m+1). 1
1, 2, 2, 2, 4, 2, 3, 4, 4, 3, 2, 6, 4, 6, 2, 4, 4, 6, 6, 4, 4, 2, 8, 4, 9, 4, 8, 2, 4, 4, 8, 6, 6, 8, 4, 4, 3, 8, 4, 12, 4, 12, 4, 8, 3, 4, 6, 8, 6, 8, 8, 6, 8, 6, 4, 2, 8, 6, 12, 4, 16, 4, 12, 6, 8, 2 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Row sums are {1, 4, 8, 14, 20, 28, 37, 44, 58, 64, 80}.
LINKS
FORMULA
t(n,m) = Sigma_0(n - m + 1)*Sigma_0(m + 1), where Sigma_0(n) = A000005(n).
EXAMPLE
Triangle begins
{1},
{2, 2},
{2, 4, 2},
{3, 4, 4, 3},
{2, 6, 4, 6, 2},
{4, 4, 6, 6, 4, 4},
{2, 8, 4, 9, 4, 8, 2},
{4, 4, 8, 6, 6, 8, 4, 4},
{3, 8, 4, 12, 4, 12, 4, 8, 3},
{4, 6, 8, 6, 8, 8, 6, 8, 6, 4},
{2, 8, 6, 12, 4, 16, 4, 12, 6, 8, 2}
MATHEMATICA
t[n_, m_] =DivisorSigma[0, n - m + 1]*DivisorSigma[0, m + 1]; Table[Table[t[n, m], {m, 0, n}], {n, 0, 10}]//Flatten
PROG
(PARI) for(n=0, 20, for(m=0, n, print1(numdiv(n-m+1)*numdiv(m+1), ", "))) \\ G. C. Greubel, Jun 08 2018
(Magma) [[NumberOfDivisors(n-m+1)*NumberOfDivisors(m+1): m in [0..n]]: n in [0..20]]; // G. C. Greubel, Jun 08 2018
CROSSREFS
Cf. A000005.
Sequence in context: A368468 A069930 A086327 * A216620 A181019 A066761
KEYWORD
nonn,tabl
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 14:32 EDT 2024. Contains 371960 sequences. (Running on oeis4.)