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.

A247964 Beatty sequence for e^(1/3): a(n) = floor(n*(e^(1/3))).

This page as a plain text file.
%I A247964 #25 Feb 16 2025 08:33:23
%S A247964 0,1,2,4,5,6,8,9,11,12,13,15,16,18,19,20,22,23,25,26,27,29,30,32,33,
%T A247964 34,36,37,39,40,41,43,44,46,47,48,50,51,53,54,55,57,58,60,61,62,64,65,
%U A247964 66,68,69,71,72,73,75,76,78,79,80,82,83,85,86,87,89,90,92,93
%N A247964 Beatty sequence for e^(1/3): a(n) = floor(n*(e^(1/3))).
%C A247964 The Beatty complement is given in A248522. - _M. F. Hasler_, Oct 07 2014
%H A247964 Paolo Xausa, <a href="/A247964/b247964.txt">Table of n, a(n) for n = 0..10000</a>
%H A247964 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/BeattySequence.html">Beatty Sequence</a>.
%H A247964 <a href="/index/Be#Beatty">Index entries for sequences related to Beatty sequences</a>.
%t A247964 Floor[Range[0,100]*Exp[1/3]] (* _Paolo Xausa_, Jul 16 2024 *)
%o A247964 (Java) static int a(int n) {return (int) (n*Math.pow(Math.E, (1.0/3))); }
%o A247964 (PARI) a(n)=n\exp(-1/3) \\ _M. F. Hasler_, Oct 07 2014
%Y A247964 Cf. A248522, A022843, A061402, A092041, A098005, A198268.
%K A247964 nonn
%O A247964 0,3
%A A247964 _Sarah Nathanson_, Oct 01 2014