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!)
A129353 A051731 * A115361. 3
1, 2, 1, 1, 0, 1, 3, 2, 0, 1, 1, 0, 0, 0, 1, 2, 1, 2, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 3, 0, 2, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 2, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 3, 1, 0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The inverse Moebius transform of the first column of A115361 which is A209229 gives the first column of this sequence.
LINKS
FORMULA
T(n,k) = A001511(n/k) for k | n, T(n,k) = 0 otherwise. - Andrew Howroyd, Aug 04 2018
EXAMPLE
First few rows of the triangle are:
1;
2, 1;
1, 0, 1;
3, 2, 0, 1;
1, 0, 0, 0, 1;
2, 1, 2, 0, 0, 1;
1, 0, 0, 0, 0, 0, 1;
4, 3, 0, 2, 0, 0, 0, 1;
...
MAPLE
A129353 := proc(n, k)
add( A051731(n, j)*A115361(j-1, k-1), j=k..n) ;
end proc: # R. J. Mathar, Jul 14 2012
MATHEMATICA
T[n_, k_] := If[Mod[n, k] != 0, 0, 1 + IntegerExponent[n/k, 2]];
Table[T[n, k], {n, 1, 15}, {k, 1, n}] // Flatten (* Jean-François Alcover, Apr 08 2020, from PARI *)
PROG
(PARI) T(n, k)={if(n%k, 0, 1 + valuation(n/k, 2))} \\ Andrew Howroyd, Aug 04 2018
CROSSREFS
Column 1 is A001511.
Row sums are A129628 (inverse Moebius transform of A001511).
Sequence in context: A131257 A105806 A129501 * A174295 A158511 A092921
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Apr 10 2007
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 18 18:44 EDT 2024. Contains 371781 sequences. (Running on oeis4.)