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!)
A226259 Denominators of mass formula for connected vacuum graphs on n nodes for a phi^4 field theory. 3
1, 8, 12, 96, 72, 960, 324, 96768, 1296, 82944, 1620, 3649536, 17496, 77635584, 6804, 159252480, 23328, 9746251776, 708588, 392143306752, 2361960, 866843099136, 7794468, 22785590034432, 25509168, 445805022412800, 82904796, 213986410758144, 29760696 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
Carl M. Bender and Kimball A. Milton, Continued fraction as a discrete nonlinear transform, arXiv:hep-th/9304052, 1993. See Eq. 11.
Carl M. Bender and Kimball A. Milton, Continued fraction as a discrete nonlinear transform, Journal of Mathematical Physics 35, 1994, 364-367.
FORMULA
Let V(n) = (4*n - 1)!!/(4!^n*n!) = A225697(n)/A225698(n), and c(n) = V(n) - (1/n)*Sum_{j=0..n-1} j*c(j)*V(n-j), c(0) = 1. Then a(n) = denominator of c(n). - Franck Maminirina Ramaharo, Feb 04 2019
EXAMPLE
1, 1/8, 1/12, 11/96, 17/72, 619/960, 709/324, ...
PROG
(Maxima)
c_list : [1]$
V(n) := if n = 0 then 1 else (4*n - 1)!!/(4!^n*n!)$
c(n) := V(n) - 1/n*sum(j*c_list[j + 1]*V(n - j), j , 0 , n - 1)$
for i:1 thru 50 do c_list : append(c_list, [c(i)])$
map(denom, c_list); /* Franck Maminirina Ramaharo, Feb 04 2019 */
CROSSREFS
Sequence in context: A216711 A137232 A147764 * A162466 A098664 A266800
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Jun 02 2013
EXTENSIONS
More terms from Franck Maminirina Ramaharo, Feb 04 2019
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 September 4 08:26 EDT 2024. Contains 375679 sequences. (Running on oeis4.)