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!)
A374333 a(n) is the denominator of x(n) = (2*x(n-1) + 1/n) mod 1, with x(0) = 0. 3
1, 1, 2, 3, 12, 30, 30, 105, 840, 1260, 63, 693, 2772, 18018, 18018, 45045, 720720, 6126120, 3063060, 29099070, 58198140, 29099070, 29099070, 334639305, 2677114440, 6692786100, 1673196525, 5019589575, 20078358300, 291136195350, 291136195350, 4512611027925, 144403552893600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
See A374332 for details and links.
LINKS
MATHEMATICA
Block[{n = 0}, Denominator[NestList[Mod[2*# + 1/++n, 1] &, 0, 50]]]
PROG
(Python)
from itertools import count, islice
from fractions import Fraction
def A374333_gen(): # generator of terms
a = Fraction(0, 1)
for n in count(1):
yield a.denominator
a = (2*a+Fraction(1, n)) % 1
A374333_list = list(islice(A374333_gen(), 20)) # Chai Wah Wu, Jul 13 2024
(PARI) x(n) = if (n==0, 0, 2*x(n-1) + 1/n);
a(n) = denominator(frac(x(n))); \\ Michel Marcus, Jul 13 2024
CROSSREFS
Cf. A374332 (numerators), A374335.
Sequence in context: A228501 A089414 A260631 * A195913 A048085 A069062
KEYWORD
nonn,frac
AUTHOR
Paolo Xausa, Jul 06 2024
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 August 10 19:25 EDT 2024. Contains 375058 sequences. (Running on oeis4.)