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!)
A070981 Smallest integer k such that n divides floor((4/3)^k). 1
1, 3, 4, 5, 6, 13, 7, 14, 8, 21, 16, 21, 9, 13, 20, 22, 10, 32, 17, 21, 13, 51, 11, 67, 37, 66, 65, 14, 69, 21, 12, 68, 16, 35, 20, 66, 15, 122, 65, 22, 98, 13, 70, 66, 20, 117, 28, 67, 58, 37, 34, 66, 151, 103, 93, 14, 240, 80, 18, 21, 79, 87, 20, 68, 114, 66, 28, 35, 155 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = min( k : A064628(k) == 0 mod(n) )
MATHEMATICA
sik[n_]:=Module[{k=1}, While[Mod[Floor[(4/3)^k], n]!=0, k++]; k]; Array[sik, 70] (* Harvey P. Dale, Jun 12 2019 *)
PROG
(PARI) for(n=1, 100, s=1; while(floor((4/3)^s)%n>0, s++); print1(s, ", "))
CROSSREFS
Cf. A064628.
Sequence in context: A361081 A213206 A299496 * A107228 A355706 A351711
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 24 2002
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 May 14 10:41 EDT 2024. Contains 372532 sequences. (Running on oeis4.)