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!)
A055894 Inverse Moebius transform of Pascal's triangle A007318. 2
1, 1, 1, 2, 2, 2, 2, 3, 3, 2, 3, 4, 8, 4, 3, 2, 5, 10, 10, 5, 2, 4, 6, 18, 22, 18, 6, 4, 2, 7, 21, 35, 35, 21, 7, 2, 4, 8, 32, 56, 78, 56, 32, 8, 4, 3, 9, 36, 87, 126, 126, 87, 36, 9, 3, 4, 10, 50, 120, 220, 254, 220, 120, 50, 10, 4, 2, 11, 55, 165, 330, 462, 462, 330, 165, 55, 11 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
N. J. A. Sloane, Transforms
EXAMPLE
Triangle starts:
[0] 1;
[1] 1, 1;
[2] 2, 2, 2;
[3] 2, 3, 3, 2;
[4] 3, 4, 8, 4, 3;
[5] 2, 5, 10, 10, 5, 2;
[6] 4, 6, 18, 22, 18, 6, 4;
[7] 2, 7, 21, 35, 35, 21, 7, 2;
[8] 4, 8, 32, 56, 78, 56, 32, 8, 4;
[9] 3, 9, 36, 87, 126, 126, 87, 36, 9, 3;
...
MATHEMATICA
T[n_, k_] := DivisorSum[GCD[k, n], Binomial[n/#, k/#] &]; T[0, 0] = 1; Table[T[n, k], {n, 0, 12}, {k, 0, n}] // Flatten (* Jean-François Alcover, Dec 02 2015 *)
PROG
(PARI)
T(n, k) = if(n<=0, n==0, sumdiv(gcd(n, k), d, binomial(n/d, k/d) ) );
/* print triangle: */
{ for (n=0, 17, for (k=0, n, print1(T(n, k), ", "); ); print(); ); }
/* Joerg Arndt, Oct 21 2012 */
CROSSREFS
Cf. A007318.
Row sums give A055895.
Sequence in context: A335898 A143901 A115263 * A350226 A362136 A224713
KEYWORD
nonn,tabl
AUTHOR
Christian G. Bower, Jun 09 2000
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)