Original entry on oeis.org
1, 2, 4, 1, 8, 4, 16, 11, 1, 32, 26, 6, 64, 57, 22, 1, 128, 120, 64, 8, 256, 247, 163, 37, 1, 512, 502, 382, 130, 10, 1024, 1013, 848, 386, 56, 1, 2048, 2036, 1816, 1024, 232, 12, 4096, 4083, 3797, 2510, 794, 79, 1
Offset: 0
First few rows of the triangle =
1;
2;
4, 1;
8, 4;
16, 11, 1;
32, 26, 6;
64, 57, 22, 1;
128, 120, 64, 8,
256, 247, 163, 37, 1;
512, 502, 382, 130, 10;
1024, 1013, 848, 386, 56, 1;
2048, 2036, 1816, 1024, 232, 12;
4096, 4083, 3797, 2510, 794, 79, 1;
...
Original entry on oeis.org
1, 1, 3, 7, 16, 36, 80, 176, 384, 832, 1792, 3840, 8192, 17408, 36864, 77824, 163840, 344064, 720896, 1507328, 3145728, 6553600, 13631488, 28311552, 58720256, 121634816, 251658240, 520093696, 1073741824, 2214592512, 4563402752
Offset: 0
G.f. = 1 + x + 3*x^2 + 7*x^3 + 16*x^4 + 36*x^5 + 80*x^6 + ... - _Michael Somos_, Mar 26 2022
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Paul Barry, A Catalan Transform and Related Transformations on Integer Sequences, Journal of Integer Sequences, Vol. 8 (2005), Article 05.4.5.
- Frank Ellermann, Illustration of binomial transforms
- Milan Janjic, Two Enumerative Functions
- Milan Janjic and B. Petkovic, A Counting Function, arXiv 1301.4550 [math.CO], 2013.
- Milan Janjic and B. Petkovic, A Counting Function Generalizing Binomial Coefficients and Some Other Classes of Integers, J. Int. Seq. 17 (2014) # 14.3.5.
- Thomas Selig and Haoyue Zhu, New combinatorial perspectives on MVP parking functions and their outcome map, arXiv:2309.11788 [math.CO], 2023. See p. 29.
- Index entries for linear recurrences with constant coefficients, signature (4,-4).
-
[1,1] cat [(n+4)*2^(n-3): n in [2..40]]; // G. C. Greubel, Sep 27 2022
-
Join[{1,1,a=3,b=7},Table[c=4*b-4*a;a=b;b=c,{n,100}]] (* Vladimir Joseph Stephan Orlovsky, Jan 15 2011 *)
Table[ If[n<2, 1, 2^(n-3)*(n+4)], {n, 0, 30}] (* Jean-François Alcover, Sep 12 2012 *)
LinearRecurrence[{4,-4},{1,1,3,7},40] (* Harvey P. Dale, May 03 2019 *)
-
v=[1,1,3,7];for(i=1,99,v=concat(v,4*(v[#v]-v[#v-1])));v \\ Charles R Greathouse IV, Jun 01 2011
-
[1,1]+[(n+4)*2^(n-3) for n in range(2,40)] # G. C. Greubel, Sep 27 2022
Showing 1-2 of 2 results.
Comments