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!)
A152656 Triangle read by rows: denominators of polynomials from A000142: P(0,x) = 1, P(n,x) = 1/n! + x*Sum_{i=0..n-1} P(n-i-1)/i!. Numerators are A152650. 7
1, 1, 1, 2, 1, 1, 6, 1, 1, 1, 24, 3, 2, 1, 1, 120, 3, 2, 1, 1, 1, 720, 15, 8, 3, 2, 1, 1, 5040, 45, 40, 3, 6, 1, 1, 1, 40320, 315, 80, 15, 24, 1, 2, 1, 1, 362880, 315, 560, 45, 24, 1, 6, 1, 1, 1, 3628800, 2835, 4480, 315, 144, 5, 24, 3, 2, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n) is the last sequence of a trio with, first, A141412 and, second, A142048 (denominators).
LINKS
Vincenzo Librandi, Rows n = 0..100, flattened
EXAMPLE
Contribution from Vincenzo Librandi, Dec 16 2012: (Start)
Triangle begins:
1,
1, 1,
2, 1, 1,
6, 1, 1, 1,
24, 3, 2, 1, 1,
120, 3, 2, 1, 1, 1,
720, 15, 8, 3, 2, 1, 1,
5040, 45, 40, 3, 6, 1, 1, 1,
40320, 315, 80, 15, 24, 1, 2, 1, 1,
362880, 315, 560, 45, 24, 1, 6, 1, 1, 1,
3628800, 2835, 4480, 315, 144, 5, 24, 3, 2, 1, 1,
...
First column: A000142; second column: A049606. (End)
MATHEMATICA
ClearAll[u, p]; u[n_] := 1/n!; p[0][x_] := u[0]; p[n_][x_] := p[n][x] = u[n] + x*Sum[u[i]*p[n-i-1][x] , {i, 0, n-1}] // Expand; row[n_] := CoefficientList[p[n][x], x]; Table[row[n], {n, 0, 10}] // Flatten // Denominator (* Jean-François Alcover, Oct 02 2012 *)
CROSSREFS
Sequence in context: A216917 A320637 A216919 * A096162 A333144 A306297
KEYWORD
nonn,tabl
AUTHOR
Paul Curtz, Dec 10 2008
EXTENSIONS
More terms from Jean-François Alcover, Oct 02 2012
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 05:37 EDT 2024. Contains 371906 sequences. (Running on oeis4.)