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!)
A167230 The matrix exponential of Sierpiński's triangle (A047999) scaled by exp(-1). 0
1, 1, 1, 1, 0, 1, 2, 1, 1, 1, 1, 0, 0, 0, 1, 2, 1, 0, 0, 1, 1, 2, 0, 1, 0, 1, 0, 1, 5, 2, 2, 1, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 1, 5, 2, 2, 1, 0, 0, 0, 0, 2, 1, 1, 1, 2, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 5, 2, 0, 0, 2, 1, 0, 0, 2, 1, 0, 0, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,7
COMMENTS
Conjecture: All the nonzero entries in this triangle are Bell numbers (A000110).
LINKS
EXAMPLE
Triangle begins:
1
1 1
1 0 1
2 1 1 1
1 0 0 0 1
2 1 0 0 1 1
2 0 1 0 1 0 1
5 2 2 1 2 1 1 1
1 0 0 0 0 0 0 0 1
2 1 0 0 0 0 0 0 1 1
2 0 1 0 0 0 0 0 1 0 1
5 2 2 1 0 0 0 0 2 1 1 1
2 0 0 0 1 0 0 0 1 0 0 0 1
5 2 0 0 2 1 0 0 2 1 0 0 1 1
PROG
(PARI) matexp(M) = sum(k=0, 99, 1./k!*M^k); matexps(M) = matexp(M)/exp(1);
matexpsb(M) = bestappr(matexps(M), 9999);
P = matpascal(13); S = matrix(14, 14, n, k, P[n, k]%p);
SS = matexpsb(S);
for(n=1, 14, for(k=1, n, print1(SS[n, k], " ")); print(""))
CROSSREFS
Sequence in context: A085425 A355685 A244250 * A093658 A096493 A269242
KEYWORD
easy,nonn,tabl
AUTHOR
Gerald McGarvey, Oct 30 2009
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)