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!)
A087709 A087708/5. 8

%I #8 Sep 02 2023 16:58:22

%S 4,4,1,4,3,2,4,8,3,354,18,4,58,8,5,9,354,6,18,19,7,58,13,8,14,69,9,44,

%T 354,10,29,18,11,19,33,12,58,3569,13,104,23,14,24,69,15,43,44,16,354,

%U 28,17,29,83,18,143,243,19,54,33,20,34,58,21,3569,169,22,104,38,23,39,308,24

%N A087708/5.

%o (Python)

%o from fractions import Fraction

%o def A087709(n):

%o x = Fraction(n)

%o while x.denominator > 1 or x<=n:

%o x = Fraction(5*x.__ceil__(),3)

%o return int(x)//5 # _Chai Wah Wu_, Sep 02 2023

%K nonn

%O 1,1

%A _N. J. A. Sloane_, Sep 29 2003

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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)