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!)
A079272 a(n) = ((2n+1)*3^n - 1)/2. 4
4, 22, 94, 364, 1336, 4738, 16402, 55768, 186988, 620014, 2037190, 6643012, 21523360, 69353050, 222408058, 710270896, 2259952852, 7167279046, 22664098606, 71479080220, 224897593864, 706073841202, 2212364702434, 6919523643784, 21605859540796, 67359444450718 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Sequence corresponds to the maximum chain length of a variant of the classical puzzle whereby, under agreed terms, a ringed golden chain asset of a(n) links, when judiciously fragmented into n opened links (through n cuts) and n pieces of lengths (2n+1), (2n+1)*3, (2n+1)*3^2, ..., (2n+1)*3^(n-1), may be used to sequentially settle for payment equivalent up to a(n)-link cost, a link-cost at a time, with swapping allowed with identical fragments owned by the creditor.
a(n) = the difference of the sum of the terms in row(n) and row(n-1) in a triangle with first column T(n-1,0) = n-1 and T(i,j) = T(i-1,j-1) + T(i,j-1) + T(i+1,j-1). - J. M. Bergot, Jul 05 2018
LINKS
FORMULA
From Colin Barker, Jul 28 2012: (Start)
a(n) = 7*a(n-1) - 15*a(n-2) + 9*a(n-3).
G.f.: 2*x*(2-3*x)/((1-x)*(1-3*x)^2). (End)
a(n) = f^n(n) with f(x) = 3*x+1 = A016777(x). - Glen Gilchrist, Apr 10 2019
E.g.f.: ((1+3*x)*sinh(x) + 3*x*cosh(x))*exp(2*x). - G. C. Greubel, Apr 14 2019
EXAMPLE
For instance, the 4 fragmented chains of original length a(4) = 364 into
.
1 + 9 + 1
+ +
243 27
+ +
1 + 81 + 1
.
when swapped with identical fragments owned by the creditor, enable the sequential payment, a link-cost at a time, for an expense up to 364 link-costs.
MAPLE
a:=n->sum (3^j*n^binomial(j, n), j=0..n): seq(a(n), n=1..25); # Zerinvary Lajos, Apr 18 2009
MATHEMATICA
Rest@ CoefficientList[Series[2x(2-3x)/((1-x)(1-3x)^2), {x, 0, 25}], x] (* Michael De Vlieger, Jul 06 2018 *)
PROG
(Magma) [((2*n+1)*3^n - 1)/2: n in [1..25]]; // Vincenzo Librandi, Jul 07 2018
(PARI) vector(25, n, ((2*n+1)*3^n - 1)/2) \\ G. C. Greubel, Apr 14 2019
(Sage) [((2*n+1)*3^n - 1)/2 for n in (1..25)] # G. C. Greubel, Apr 14 2019
CROSSREFS
Sequence in context: A036922 A340748 A036926 * A197667 A366759 A007901
KEYWORD
nonn,easy
AUTHOR
Lekraj Beedassy, Feb 06 2003
EXTENSIONS
More terms from Michel ten Voorde, Jun 20 2003
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 June 9 03:24 EDT 2024. Contains 373227 sequences. (Running on oeis4.)