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!)
A050508 Golden rectangle numbers: n * A007067(n). 4
0, 2, 6, 15, 24, 40, 60, 77, 104, 135, 160, 198, 228, 273, 322, 360, 416, 476, 522, 589, 640, 714, 792, 851, 936, 1000, 1092, 1188, 1260, 1363, 1470, 1550, 1664, 1749, 1870, 1995, 2088, 2220, 2318, 2457, 2600, 2706, 2856, 3010, 3124, 3285, 3404, 3572, 3744 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
A050508:=n->n*round(n*(1+sqrt(5))/2); seq(A050508(n), n=0..100); # Wesley Ivan Hurt, Nov 27 2013
MATHEMATICA
a[n_] := n*Round[n*GoldenRatio]; Table[a[n], {n, 0, 48}] (* Jean-François Alcover, Jun 27 2012 *)
PROG
(Python)
from math import isqrt
def A050508(n): return n*((isqrt(5*n**2<<2)>>1)+n+1>>1) # Chai Wah Wu, Aug 29 2022
CROSSREFS
Cf. A007067.
Sequence in context: A177442 A349687 A090979 * A033298 A153274 A091766
KEYWORD
easy,nice,nonn
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Dec 28 1999
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 March 29 04:59 EDT 2024. Contains 371264 sequences. (Running on oeis4.)