OFFSET
1,6
COMMENTS
Lower triangular part of an infinite matrix with A001227 (number of odd divisors of n) as the main diagonal, and the rest filled with zeros. - Redacted from the original formula given by the author. - Antti Karttunen, Jan 18 2025
LINKS
EXAMPLE
First few rows of the triangle are:
1;
0, 1;
0, 0, 2
0, 0, 0, 1;
0, 0, 0, 0, 2;
0, 0, 0, 0, 0, 2;
0, 0, 0, 0, 0, 0, 2;
0, 0, 0, 0, 0, 0, 0, 1;
0, 0, 0, 0, 0, 0, 0, 0, 3;
0, 0, 0, 0, 0, 0, 0, 0, 0, 2;
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2;
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2;
...
PROG
(PARI)
A000265(n) = (n>>valuation(n, 2));
A133698(n) = if(ispolygonal(n, 3), numdiv(A000265((sqrtint(1+(n*8))-1)/2)), 0); \\ Antti Karttunen, Jan 18 2025
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Sep 21 2007
EXTENSIONS
Offset corrected from 0 to 1 and data section extended to a(105) by Antti Karttunen, Jan 18 2025
STATUS
approved