login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A063457 a(n)= floor( a(n-1) *(Pi-1) ); a(1) = 1. 1
1, 2, 4, 8, 17, 36, 77, 164, 351, 751, 1608, 3443, 7373, 15789, 33813, 72413, 155079, 332116, 711257, 1523222, 3262121, 6986134, 14961453, 32041337, 68619491, 146954997, 314717741, 673997202, 1443427456, 3091233635, 6620163243 (list; graph; refs; listen; history; internal format)
OFFSET

1,2

LINKS

Harry J. Smith, Table of n, a(n) for n=1,...,300

MATHEMATICA

a[1] = 1; a[n_] = Floor[ a[n - 1]*(Pi - 1) ]; Table[ a[n], {n, 1, 35} ]

With[{c=Pi-1}, NestList[Floor[c #]&, 1, 40]] (* From Harvey P. Dale, Jan 14 2012 *)

PROG

(PARI) { default(realprecision, 100); for (n=1, 300, if (n>1, a=floor(a*(Pi - 1)), a=1); write("b063457.txt", n, " ", a) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Aug 22 2009]

CROSSREFS

Sequence in context: A202843 A008999 A052903 * A190162 A157904 A182901

Adjacent sequences:  A063454 A063455 A063456 * A063458 A063459 A063460

KEYWORD

nonn

AUTHOR

Robert G. Wilson v (rgwv(AT)rgwv.com), Jul 25 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 23:53 EST 2012. Contains 205860 sequences.