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.
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
KEYWORD
nonn
AUTHOR
Jon Perry, Jan 25 2013
STATUS
approved