login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A112596 Sequence of denominators of the continued fraction derived from the sequence of the numbers of distinct factors of a number (A001221, also called omega(n)). 1
1, 1, 2, 3, 5, 13, 18, 31, 49, 129, 178, 485, 663, 1811, 4285, 6096, 10381, 26858, 37239, 101336, 239911, 581158, 821069, 2223296, 3044365, 8312026, 11356391, 31024808, 42381199, 158168405, 200549604, 358718009, 917985622, 2194689253, 5307364128 (list; graph; refs; listen; history; internal format)
OFFSET

1,3

COMMENTS

The limits of the continued fraction is Cd= 0.6123687534182316423985073896748729172179677660718454489694806870..., i.e. the number associated to the sequence of number of distinct primes dividing n.

EXAMPLE

b[1]=1;

b[2]=d[2]*b[1] = 1*1 =1 (d[2] is the second element of A001221,

i.e. the number of distinct primes dividing 2)

b[3]=d[3]*b[2]+b[1]= 1*1+1=2

MAPLE

a:=proc(N) # A is numerator of the continued fraction # B is denominator of the continued fraction # d is the sequence of the number of divisors of a number (A001221), d[1] is the first element. A[1]:=d[1]; A[2]:=d[2]*A[1]+1; B[1]:=1; B[2]:=d[2]*B[1]; for n from 2 by 1 to N-1 do A[n+1]:=d[n+1]*A[n]+A[n-1]; B[n+1]:=d[n+1]*B[n]+B[n-1]; od; end:

CROSSREFS

Cf. A001221, A112595.

Cf.=20.

Sequence in context: A162573 A087356 A042261 * A179238 A041385 A108282

Adjacent sequences:  A112593 A112594 A112595 * A112597 A112598 A112599

KEYWORD

frac,nonn

AUTHOR

Giorgio Balzarotti and Paolo P. Lava (greenblue(AT)tiscali.it), Dec 19 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 16 13:56 EST 2012. Contains 205921 sequences.