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!)
A210509 x(n+1) = x(n)*Pi/3 with x(0) = Pi, and a(n) = floor(x(n)). 0
3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 6, 6, 6, 7, 7, 7, 8, 8, 9, 9, 9, 10, 10, 11, 11, 12, 13, 13, 14, 15, 15, 16, 17, 18, 18, 19, 20, 21, 22, 23, 25, 26, 27, 28, 30, 31, 33, 34, 36, 37, 39, 41, 43, 45, 47, 49, 52, 54, 57, 60, 62, 65, 69, 72, 75, 79, 83, 86 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
24 is the first number greater than 3 not in the sequence.
Later output is more separated, for example: 40888572599, 42818413097, 44839337342, 46955644261.
LINKS
FORMULA
x(n+1) = x(n)*Pi/3 with x(0) = Pi, and a(n) = floor(x(n)).
PROG
(JavaScript)
pi=Math.PI;
x=pi;
for (i=0; i<600; i++) {x*=pi; x/=3; document.write(Math.floor(x)+", "); }
CROSSREFS
Cf. A000796 (Pi), A019670 (Pi/3).
Sequence in context: A276870 A081168 A301415 * A362049 A333819 A216944
KEYWORD
nonn
AUTHOR
Jon Perry, Jan 25 2013
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 April 16 04:17 EDT 2024. Contains 371696 sequences. (Running on oeis4.)