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!)
A075312 Products of Wythoff pairs: [n*r]*[n*r^2], where [] is the floor function and r is the golden ratio, (1+sqrt(5))/2. 1
2, 15, 28, 60, 104, 135, 198, 240, 322, 416, 476, 589, 714, 792, 936, 1025, 1188, 1363, 1470, 1664, 1782, 1995, 2220, 2356, 2600, 2856, 3010, 3285, 3450, 3744, 4050, 4233, 4558, 4895, 5096, 5452, 5664, 6039, 6426, 6656, 7062, 7303, 7728, 8165, 8424, 8880 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = A000201(n) * A001950(n) = floor(n*r)*(n+floor(n*r)), where r=(1+sqrt(5))/2.
EXAMPLE
Wythoff pairs: (1,2), (3,5), (4,7), (6,10),..., so that
A075312 = (1*2, 3*5, 4*7, 6*10,...).
PROG
(Python)
from math import isqrt
def A075312(n): return (lambda m: m*(m+n))(n+isqrt(5*n**2)>>1) # Chai Wah Wu, Aug 29 2022
CROSSREFS
The pairs are (A000201(n), A001950(n)). The sum is given by A003623.
Sequence in context: A370031 A338457 A153080 * A212975 A128828 A032002
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 13 2002
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)