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!)
A260484 Complement of the Beatty sequence for e^(1/Pi) = A179706. 3
3, 7, 11, 14, 18, 22, 25, 29, 33, 36, 40, 44, 47, 51, 55, 58, 62, 66, 69, 73, 77, 80, 84, 88, 91, 95, 99, 102, 106, 110, 113, 117, 121, 124, 128, 132, 135, 139, 143, 146, 150, 154, 157, 161, 165, 168, 172, 176, 179, 183, 187, 190, 194, 198 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Beatty Sequence
Eric Weisstein's World of Mathematics, e
Eric Weisstein's World of Mathematics, Pi
FORMULA
a(n) = floor(n*e^(1/Pi)/(e^(1/Pi)-1)).
EXAMPLE
For n = 5, floor(5*e^(1/Pi)/(e^(1/Pi)-1)) = 18.
PROG
(Python)
from sympy import E, pi, floor
for n in range(1, 101): print(floor(n*E**(1/pi)/(E**(1/pi)-1)), end=', ')
(PARI) vector(80, n, floor(n*exp(1/Pi)/(exp(1/Pi)-1))) \\ Michel Marcus, Aug 05 2015
CROSSREFS
Cf. A179706 (e^(1/Pi)), A260483 (complement).
Sequence in context: A310203 A310204 A310205 * A343028 A000572 A059568
KEYWORD
nonn
AUTHOR
Karl V. Keller, Jr., Jul 26 2015
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 15 19:42 EDT 2024. Contains 372549 sequences. (Running on oeis4.)