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!)
A113065 a(n) = denominator of r(n), where r(n) = the continued fraction of rational terms [1,3/2,11/6,...,H(n)], where H(n) = sum{j=1..n} 1/j, the n-th harmonic number. 2
1, 3, 45, 1341, 216117, 12198933, 5033340279, 4308570125919, 34267321328538951, 280288242453582014931, 25856932235044095350623341, 2439612204830872620697726926561, 3054068039108858195570513558702127273 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
For n = 3 we have 1 + 1/(3/2 + 6/11) = 67/45, the denominator of which is 45.
PROG
;; PLT DrScheme (Joshua Zucker)
;; (harmonic n) gives the n-th partial sum of the harmonic series.
;; cf->frac is a utility that converts a continued fraction to a fraction.
(define (A113065 n)
(denominator (cf->frac (build-list n (lambda (k) (harmonic (add1 k)))))))
CROSSREFS
Sequence in context: A245066 A352409 A187662 * A144949 A144950 A144951
KEYWORD
frac,nonn
AUTHOR
Leroy Quet, Oct 13 2005
EXTENSIONS
More terms from Joshua Zucker, May 08 2006
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 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)