Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A110483
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A110483 Continued fraction for seventh root of 2. +0
1
1, 9, 1, 1, 1, 1, 5, 46, 1, 3, 2, 1, 1, 3, 1, 1, 2, 1, 22, 48, 1, 1, 5, 4, 1, 1, 1, 1, 1, 1, 2, 8, 1, 6, 1, 21, 1, 1, 1, 1, 1, 6, 1, 1, 3, 3, 1, 1, 2, 2, 2, 3, 1, 26, 1, 16, 1, 4, 21, 1, 2, 1, 1, 1, 5, 3, 7, 21, 3, 1, 1, 1, 8, 1, 8, 1, 4, 1, 24, 1, 3, 1, 6, 1, 2, 1, 5, 5, 6, 1, 12, 1, 8, 2, 2, 1, 3, 1, 1, 2 (list; graph; listen)
OFFSET

0,2

PROGRAM

(Haskell) import Ratio

floorRoot :: Integer -> Integer -> Integer

floorRoot k n | k>=1 && n>=1 = h n where h x = let y=((k-1)*x+n`div`x^(k-1))`div`k in if y<x then h y else x

intFrac :: Rational -> (Integer, Rational)

intFrac x = let ((a, b), ~(q, r)) = ((numerator x, denominator x), divMod a b) in (q, r%b)

cf :: Rational -> Rational -> [Integer]

cf x y = let ((xi, xf), (yi, yf)) = (intFrac x, intFrac y) in if xi==yi then xi : cf (recip xf) (recip yf) else []

y = 2^512 -- increase to get more terms, decrease to get a quick answer

(k, n) = (7, 2) -- compute continued fraction for k-th root of n

main = print (let x = floorRoot k (n*y^k) in cf (x%y) ((x+1)%y))

CROSSREFS

Cf. A002945 A002950.

Sequence in context: A113061 A087966 A087968 this_sequence A010164 A006084 A059928

Adjacent sequences: A110480 A110481 A110482 this_sequence A110484 A110485 A110486

KEYWORD

cofr,nonn

AUTHOR

Paul Stoeber (pstoeber(AT)uni-potsdam.de), Sep 09 2005

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified August 29 17:54 EDT 2008. Contains 143238 sequences.


AT&T Labs Research