cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-4 of 4 results.

A122852 Row sums of number triangle A122851.

Original entry on oeis.org

1, 1, 2, 3, 6, 11, 24, 51, 122, 291, 756, 1979, 5526, 15627, 46496, 140451, 442194, 1414931, 4687212, 15785451, 54764846, 193129659, 698978136, 2570480147, 9672977706, 36967490691, 144232455524, 571177352091, 2304843053382, 9434493132011, 39289892366736
Offset: 0

Views

Author

Paul Barry, Sep 14 2006

Keywords

Comments

Essentially the same as A072374. - R. J. Mathar, Jun 18 2008
Diagonal sums of A008279. - Paul Barry, Feb 11 2009

Crossrefs

Programs

  • Mathematica
    Table[Sum[Binomial[n-k,k]*k!,{k,0,Floor[n/2]}],{n,0,20}] (* Vaclav Kotesovec, Feb 08 2014 *)
  • PARI
    a(n) = sum(k=0, n, binomial(k,n-k)*(n-k)!); \\ Michel Marcus, Sep 02 2020

Formula

a(n) = Sum{k=0..n} C(k,n-k)*(n-k)!.
From Paul Barry, Feb 11 2009: (Start)
G.f.: 1/(1-x-x^2/(1-x^2/(1-x-2x^2/(1-2x^2/(1-x-3x^2/(1-3x^2/(1-x-4x^2/(1-4x^2/(1-... (continued fraction).
a(n) = Sum_{k=0..floor(n/2)} C(n-k,k)*k!. (End)
D-finite with recurrence -2*a(n) + 3*a(n-1) + (n-1)*a(n-2) + (-n+1)*a(n-3) = 0. - R. J. Mathar, Nov 15 2012. Proof in [Han 2019]
a(n) ~ sqrt(Pi) * exp(sqrt(n/2) - n/2 + 1/8) * n^((n+1)/2) / 2^(n/2+1) * (1 + 37/(48*sqrt(2*n))). - Vaclav Kotesovec, Feb 08 2014
a(n) = (a(n-1) + n * a(n-2) + 1)/2 for n > 1. - Seiichi Manyama, Nov 19 2022

Extensions

More terms from Vaclav Kotesovec, Jun 04 2019

A357532 a(n) = Sum_{k=0..floor(n/3)} (n-2*k)!/(n-3*k)!.

Original entry on oeis.org

1, 1, 1, 2, 3, 4, 7, 12, 19, 34, 63, 112, 211, 414, 799, 1588, 3267, 6706, 13999, 30024, 64723, 141142, 314271, 705724, 1599619, 3685338, 8573167, 20112016, 47804499, 114743614, 277615903, 679057092, 1676636611, 4171532674, 10477002159, 26545428568, 67755344467, 174386589606
Offset: 0

Views

Author

Seiichi Manyama, Nov 19 2022

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\3, (n-2*k)!/(n-3*k)!);

Formula

a(n) = (2 * a(n-1) + n * a(n-3) + 1)/3 for n > 2.
a(n) ~ c * n^(n/3 + 1/2) / (3^(n/3) * exp(n/3 - n^(2/3)/3^(2/3) - 2*n^(1/3) / 3^(7/3))) * (1 + 1235/(729 * 3^(2/3) * n^(1/3)) + 9452027/(15943230 * 3^(1/3) * n^(2/3)) + 16015315669/(41841412812*n)), where c = 0.50682110703119..., conjecture: c = exp(4/81) * sqrt(2*Pi) / 3^(3/2). - Vaclav Kotesovec, Nov 25 2022

A357570 a(n) = Sum_{k=0..floor(n/5)} (n-4*k)!/(n-5*k)!.

Original entry on oeis.org

1, 1, 1, 1, 1, 2, 3, 4, 5, 6, 9, 14, 21, 30, 41, 60, 93, 146, 225, 336, 509, 798, 1281, 2060, 3261, 5154, 8273, 13536, 22365, 36806, 60369, 99588, 166301, 280650, 474801, 802424, 1358973, 2317806, 3987185, 6893196, 11933949, 20690738, 36022161, 63107520, 111146141, 196322454, 347412753
Offset: 0

Views

Author

Seiichi Manyama, Nov 19 2022

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\5, (n-4*k)!/(n-5*k)!);

Formula

D-finite with recurrence a(n) = (4 * a(n-1) + n * a(n-5) + 1)/5 for n > 4.

A358605 a(n) = Sum_{k=0..floor(n/4)} (-1)^k * (n-3*k)!/(n-4*k)!.

Original entry on oeis.org

1, 1, 1, 1, 0, -1, -2, -3, -2, 1, 6, 13, 16, 9, -14, -59, -108, -119, -26, 261, 736, 1177, 1026, -731, -4964, -11079, -14978, -6299, 30024, 102841, 189466, 190917, -97004, -921191, -2301354, -3396539, -1674368, 7265241, 27311794, 53600101, 56943756, -31760903, -310594514, -809146971
Offset: 0

Views

Author

Seiichi Manyama, Nov 23 2022

Keywords

Crossrefs

Programs

  • PARI
    a(n) = sum(k=0, n\4, (-1)^k*(n-3*k)!/(n-4*k)!);

Formula

a(n) = (3 * a(n-1) - n * a(n-4) + 1)/4 for n > 3.
Showing 1-4 of 4 results.