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!)
A249059 Row sums of the triangular array at A249057. 4
1, 5, 10, 40, 110, 430, 1420, 5720, 21340, 89980, 367400, 1627120, 7138120, 33172040, 154520080, 751616800, 3687498320, 18719834320, 96157299040, 507993654080, 2719611532000, 14911459229920, 82901747529920, 470599687507840, 2708946870815680 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
First 3 rows from A249057:
1
4 1
5 4 1,
so that a(0) = 1, a(1) = 5, a(2) = 10.
MATHEMATICA
z = 30; p[x_, n_] := x + (n + 2)/p[x, n - 1]; p[x_, 1] = 1;
t = Table[Factor[p[x, n]], {n, 1, z}];
u = Numerator[t];
v1 = Flatten[CoefficientList[u, x]]; (* A249057 *)
v2 = u /. x -> 1 (* A249059 *)
v3 = u /. x -> 0 (* A249060 *)
CROSSREFS
Sequence in context: A191580 A179306 A117865 * A163305 A001692 A038070
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 20 2014
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 08:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)