The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A073633 Numbers k that divide floor((3/2)^k) = A002379(k). 3
1, 2, 3, 16, 43, 50, 56, 193, 283, 961, 970, 4958, 9439, 10493, 11375, 18552, 57051, 81602, 617287, 917186, 1525995, 5107085, 9162821, 22008620 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
No more terms through 10^6. - Ryan Propper, May 05 2006
The first 8 terms are all in A032863, all known subsequent terms, i.e., at least up to a(21), are not in A032863. - M. F. Hasler, Oct 05 2018
LINKS
MATHEMATICA
t = 1; Do[t = 3t/2; If[ Mod[ Floor[t], n] == 0, Print[n]], {n, 500000}] (* Robert G. Wilson v, Apr 06 2006 *)
PROG
(PARI) a=1; for(n=1, 10^6, a*=3; b=shift(a, -n); if(b%n==0, print1(n, ", "))) \\ Robert Gerbicz, Aug 23 2006
(PARI) P=1; for(n=1, oo, (P*=3)>>n%n||print1(n", ")) \\ M. F. Hasler, Oct 05 2018
(Python)
from gmpy2 import mpz, t_div_2exp, t_mod
A073633_list, m = [], mpz(1)
for n in range(1, 10**9):
m *= 3
if t_mod(t_div_2exp(m, n), n) == 0:
A073633_list.append(n) # Chai Wah Wu, Mar 30 2020
CROSSREFS
Sequence in context: A350025 A072684 A344747 * A012357 A012701 A012356
KEYWORD
more,nonn
AUTHOR
Benoit Cloitre, Aug 29 2002
EXTENSIONS
More terms from Michel ten Voorde Jun 20 2003
2 more terms from Ryan Propper, May 05 2006
More terms from Robert Gerbicz, Aug 23 2006
a(22)-a(24) from Chai Wah Wu, Mar 30 2020
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 June 3 03:48 EDT 2024. Contains 373054 sequences. (Running on oeis4.)