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!)
A065554 Numbers k such that floor((3/2)^(k+1))/floor((3/2)^k) = 3/2. 10
2, 9, 11, 13, 24, 29, 31, 36, 37, 40, 41, 43, 49, 50, 51, 67, 68, 70, 72, 73, 77, 79, 80, 86, 88, 91, 92, 95, 101, 102, 103, 115, 121, 126, 127, 132, 134, 136, 142, 145, 146, 151, 154, 156, 162, 165, 167, 171, 172, 176, 178, 179, 181, 191, 193, 194, 195, 198, 199 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Also k such that A002380(k+1) = 3*A002380(k). - Benoit Cloitre, Apr 21 2003
It appears that lim_{n->oo} a(n)/n = 3. - Benoit Cloitre, Jan 29 2006
LINKS
MATHEMATICA
a[1] = 2; a[n_ ] := a[n] = Block[ {k = a[n - 1] + 1}, While[ Floor[(3/2)^(k + 1)] / Floor[(3/2)^k] != 3/2, k++ ]; Return[k]]; Table[ a[n], {n, 1, 70} ]
PROG
(PARI) { n=0; for (m=1, 10^9, x=floor((3/2)^(m+1))/floor((3/2)^m); if (2*x==3, write("b065554.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Oct 22 2009
CROSSREFS
Sequence in context: A072065 A137000 A073634 * A034042 A138759 A345925
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Nov 28 2001
EXTENSIONS
More terms from Robert G. Wilson v, Nov 30 2001
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 8 22:22 EDT 2024. Contains 375024 sequences. (Running on oeis4.)