cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A066344 Beatty sequence for log_5(10).

This page as a plain text file.
%I A066344 #24 Feb 16 2025 08:32:45
%S A066344 1,2,4,5,7,8,10,11,12,14,15,17,18,20,21,22,24,25,27,28,30,31,32,34,35,
%T A066344 37,38,40,41,42,44,45,47,48,50,51,52,54,55,57,58,60,61,62,64,65,67,68,
%U A066344 70,71,72,74,75,77,78,80,81,82,84,85,87,88,90,91,92,94,95,97,98,100
%N A066344 Beatty sequence for log_5(10).
%C A066344 Beatty complement of A066343. - _Jianing Song_, Jan 27 2019
%H A066344 Harry J. Smith, <a href="/A066344/b066344.txt">Table of n, a(n) for n = 1..1000</a>
%H A066344 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/BeattySequence.html">Beatty Sequence</a>.
%H A066344 <a href="/index/Be#Beatty">Index entries for sequences related to Beatty sequences</a>.
%F A066344 a(n) = floor(n*log_5(10)).
%t A066344 Floor[Range[100]*Log[5, 10]] (* _Paolo Xausa_, Jul 08 2024 *)
%o A066344 (PARI) { l=log(10)/log(5); for (n=1, 1000, a=floor(n*l); write("b066344.txt", n, " ", a) ) } \\ _Harry J. Smith_, Feb 11 2010
%o A066344 (Python)
%o A066344 from sympy import integer_log
%o A066344 def A066344(n): return integer_log(1<<n,5)[0]+n # _Chai Wah Wu_, Sep 08 2024
%Y A066344 Cf. A066343, A154156 (log_5(10)).
%K A066344 easy,nonn
%O A066344 1,2
%A A066344 _Vladeta Jovovic_, Dec 15 2001