The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A100064 Triangle, read by rows, of coefficients in powers of e.g.f. for A100065 such that, for each row n>=0, Sum_{k=0..n} T(n,k)/k! = [exp(n)] (integer floor of e^n). 3
1, 1, 1, 1, 2, 8, 1, 3, 15, 51, 1, 4, 24, 120, 408, 1, 5, 35, 225, 1215, 4365, 1, 6, 48, 372, 2628, 15084, 53856, 1, 7, 63, 567, 4851, 36603, 216405, 777609, 1, 8, 80, 816, 8112, 74352, 585792, 3558672, 12810240, 1, 9, 99, 1125, 12663, 135081, 1301157, 10623231, 65821329, 237788055 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
EXAMPLE
Rows form the initial coefficients of powers of e.g.f. of A100065:
G100065^0: [1,__0,0,0,0,0,0,0,0,...],
G100065^1: [1,1,__3,-3,-57,369,3861,-76617,-413775,...],
G100065^2: [1,2,8,__12,-84,-12,7200,-40716,-1301328,...],
G100065^3: [1,3,15,51,__27,-513,4077,33237,-1211895,...],
G100065^4: [1,4,24,120,408,__216,-3168,45576,-202176,...],
G100065^5: [1,5,35,225,1215,4365,__1485,-27765,440865,...],
G100065^6: [1,6,48,372,2628,15084,53856,__10908,-282960,...],
G100065^7: [1,7,63,567,4851,36603,216405,777609,__93177,...],
G100065^8: [1,8,80,816,8112,74352,585792,3558672,12810240,...],...
such that for each row n, Sum_{k=0..n} T(n,k)/k! = [exp(n)]:
[exp(0)] = 1 = 1
[exp(1)] = 1+1 = 2
[exp(2)] = 1+2+8/2! = 7
[exp(3)] = 1+3+15/2!+51/3! = 20
[exp(4)] = 1+4+24/2!+120/3!+408/4! = 54
[exp(5)] = 1+5+35/2!+225/3!+1215/4!+4365/5! = 148
PROG
(PARI) {T(n, k)=if(n==0, 1, if(k==0, 1, if(k==n, n!*(floor(exp(n))-sum(j=0, n-1, T(n, j)/j!)), k!*polcoeff((Ser(vector(n, i, T(n-1, i-1)/(i-1)!), x)+x*O(x^k))^(n/(n-1)), k, x))))}
CROSSREFS
Cf. A100065.
Sequence in context: A155694 A200689 A143198 * A352589 A275980 A343918
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Nov 02 2004
EXTENSIONS
3 more terms from Michel Marcus, Jan 31 2023
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 May 19 04:06 EDT 2024. Contains 372666 sequences. (Running on oeis4.)