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!)
A160794 Vertex number of a rectangular spiral related to Fibonacci numbers and prime numbers. The distances between nearest edges of the spiral that are parallel to the initial edge are the Fibonacci numbers, while the distances between nearest edges perpendicular to the initial edge are the prime numbers. 2
0, 1, 2, 5, 7, 13, 17, 28, 35, 53, 65, 94, 114, 156, 189, 248, 302, 380, 468, 569, 712, 842, 1074, 1235, 1611, 1809, 2418, 2657, 3643, 3925, 5521, 5850, 8433, 8815, 12995, 13436, 20200, 20702, 31647, 32216, 49926, 50566, 79222, 79935, 126302, 127094, 202118 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(2n) = a(2n-1) + Sum_{j=1..n} Fibonacci(j); a(2n+1) = a(2n) + 1 + Sum_{j=1..n} prime(j) for n >= 1. - Nathaniel Johnston, Jun 16 2011
MAPLE
A160794 := proc(n) option remember: if(n<=1)then return n: fi: if(n mod 2 = 0)then return procname(n-1)+add(combinat[fibonacci](j), j=1..n/2): fi: return procname(n-1)+add(ithprime(j), j=1..floor(n/2))+1: end: seq(A160794(n), n=0..46); # Nathaniel Johnston, Jun 16 2011
CROSSREFS
Sequence in context: A222532 A144256 A082555 * A092059 A260388 A169586
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, May 29 2009
EXTENSIONS
Terms after a(12) and edited by Nathaniel Johnston, Jun 16 2011
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 23 10:21 EDT 2024. Contains 371905 sequences. (Running on oeis4.)