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!)
A190001 a(n) = n + [n*r/t] + [n*s/t]; r=1, s=sinh(1), t=cosh(1). 3

%I #12 Sep 08 2022 08:45:56

%S 1,4,6,9,11,13,16,19,20,23,26,28,30,33,35,38,40,42,45,47,49,52,54,57,

%T 60,61,64,67,69,71,74,76,79,81,83,86,88,90,93,95,98,100,102,105,108,

%U 110,112,115,117,120,122,124,127,129,131,134,136,139,141,143,146,149,150,153,156,158,161,163,165,168,171,172,175,177,180

%N a(n) = n + [n*r/t] + [n*s/t]; r=1, s=sinh(1), t=cosh(1).

%C See A189999.

%H G. C. Greubel, <a href="/A190001/b190001.txt">Table of n, a(n) for n = 1..10000</a>

%F A189999: a(n) = n + [n*sinh(1)] + [n*cosh(1)].

%F A190000: b(n) = n + [n*csch(1)] + [n*coth(1)].

%F A190001: c(n) = n + [n*sech(1)] + [n*tanh(1)].

%t r=1; s=Sinh[1]; t=Cosh[1];

%t a[n_] := n + Floor[n*s/r] + Floor[n*t/r];

%t b[n_] := n + Floor[n*r/s] + Floor[n*t/s];

%t c[n_] := n + Floor[n*r/t] + Floor[n*s/t];

%t Table[a[n], {n, 1, 120}] ( *A189999 *)

%t Table[b[n], {n, 1, 120}] ( *A190000 *)

%t Table[c[n], {n, 1, 120}] ( *A190001 *)

%o (PARI) for(n=1,100, print1(n + floor(n/cosh(1)) + floor(n*tanh(1)), ", ")) \\ _G. C. Greubel_, Jan 11 2018

%o (Magma) [n + Floor(n/Cosh(1)) + Floor(n*Tanh(1)): n in [1..100]]; // _G. C. Greubel_, Jan 11 2018

%Y Cf. A189999, A190000.

%K nonn

%O 1,2

%A _Clark Kimberling_, May 03 2011

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 August 17 14:06 EDT 2024. Contains 375222 sequences. (Running on oeis4.)