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!)
A350526 a(n) = f(n*r)*c(n/r), where f = floor, c = ceiling, and r = golden ratio (A001622). 2

%I #5 Feb 06 2022 21:30:59

%S 1,6,8,18,32,36,55,60,84,112,119,152,189,198,240,250,297,348,360,416,

%T 429,490,555,570,640,714,731,810,828,912,1000,1020,1113,1210,1232,

%U 1334,1357,1464,1575,1600,1716,1742,1863,1988,2016,2146,2280,2310,2449,2480

%N a(n) = f(n*r)*c(n/r), where f = floor, c = ceiling, and r = golden ratio (A001622).

%C The golden ratio r is the unique number x such that f(n*x)*c(n/x) - c(n*x)f(n/x) = n for all n >= 1.

%F a(n) = n + A350527(n) = n + c(n*r)*f(n/r), where f = floor, c = ceiling, and r = golden ratio.

%t r = GoldenRatio; c[x_] := Ceiling[x]; f[x_] := Floor[x];

%t Table[f[n r]*c[n/r], {n, 1, 100}] (* A350526 *)

%t Table[c[n r]*f[n/r], {n, 1, 100}] (* A350527 *)

%t Table[f[n r]*c[n/r] - c[n r]*f[n/r], {n, 1, 100}] (* A000027 *)

%Y Cf. A001622, A350527.

%K nonn

%O 1,2

%A _Clark Kimberling_, Jan 04 2022

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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)