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!)
A049793 a(n) = T(n,n-1), array T as in A049790. 7

%I #8 Sep 08 2022 08:44:58

%S 1,2,4,9,13,22,27,39,47,61,71,91,100,122,137,160,175,205,220,253,272,

%T 304,326,368,386,427,455,497,523,575,598,651,683,733,768,830,856,918,

%U 959,1021,1056,1129,1162,1236,1281,1347,1393

%N a(n) = T(n,n-1), array T as in A049790.

%H G. C. Greubel, <a href="/A049793/b049793.txt">Table of n, a(n) for n = 2..1000</a>

%p seq( `if`(n=2, 1, add(floor((n-1)/floor((n-2)/j)), j=1..n-2)), n=2..60); # _G. C. Greubel_, Dec 10 2019

%t Table[If[n==2, 1, Sum[Floor[(n-1)/Floor[(n-2)/j]], {j,n-2}]], {n, 2,60}] (* _G. C. Greubel_, Dec 10 2019 *)

%o (PARI) a(n) = if(n==2, 1, sum(j=1,n-2, (n-1)\((n-2)\j)) );

%o vector(60, n, a(n+1) ) \\ _G. C. Greubel_, Dec 10 2019

%o (Magma) [n eq 2 select 1 else (&+[Floor((n-1)/Floor((n-2)/j)): j in [1..n-2]]): n in [2..60]]; // _G. C. Greubel_, Dec 10 2019

%o (Sage)

%o def a(n):

%o if (n==2): return 1

%o else: return sum(floor((n-1)/floor((n-2)/j)) for j in (1..n-2))

%o [a(n) for n in (2..60)] # _G. C. Greubel_, Dec 10 2019

%o (GAP)

%o a:= function(n)

%o if n=2 then return 1;

%o else return Sum([1..n-2], j-> Int((n-1)/Int((n-2)/j)) );

%o fi; end;

%o List([2..60], n-> a(n) ); # _G. C. Greubel_, Dec 10 2019

%Y Cf. A049790, A049791, A049792, A049794, A049795, A049796.

%K nonn

%O 2,2

%A _Clark Kimberling_

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 July 27 07:48 EDT 2024. Contains 374642 sequences. (Running on oeis4.)