The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A361209 Second hexagonal numbers having middle divisors. 1

%I #35 Oct 23 2023 08:34:43

%S 36,210,300,528,990,1176,1485,1596,2080,2346,3240,3570,4095,4278,4851,

%T 5460,6555,6786,7260,8256,8778,9870,10440,11628,12880,13530,14196,

%U 14535,15225,15576,17020,17766,20100,20910,21736,22578,23436,24310,25200,26565,27495,27966,30876

%N Second hexagonal numbers having middle divisors.

%C The middle divisors of n are the divisors in the half-open interval [sqrt(n/2), sqrt(n*2)).

%C Also numbers k with the property that in the symmetric representation of sigma(k) the smallest Dyck path has a central peak and the largest Dyck path has a central valley and both Dyck paths do not meet in the center.

%H Paolo Xausa, <a href="/A361209/b361209.txt">Table of n, a(n) for n = 1..10000</a>

%e 36 is in the sequence because it is a second hexagonal number (A014105) and it has a middle divisor, the 6.

%e On the other hand the 35th row of A237593 is [18,7,3,2,2,1,2,2,1,2,2,3,7,18] and the 36th row of the same triangle is [19,6,4,2,2,1,1,1,1,1,1,2,2,4,6,19]. Since the smallest Dyck path of the symmetric representation of sigma(36) has a central peak and the largest Dyck path has a central valley and both Dyck paths do not meet in the center so 36 is in the sequence. The diagram is too large to include.

%t A071562Q[n_]:=With[{m1=Sqrt[n/2],m2=Sqrt[2n]},DivisorSum[n,#&,m1<=#<m2&]>0];

%t With[{upto=200},Select[Array[#(2#+1)&,upto],A071562Q]] (* Checks the first 200 second hexagonal numbers *) (* _Paolo Xausa_, Oct 23 2023 *)

%o (PARI) hasmd(n)=fordiv(n, d, if(d^2>=n/2 && d^2<2*n, return(1))); 0; \\ A014105

%o select(hasmd, vector(150, n, n*(2*n + 1))) \\ _Michel Marcus_, Mar 10 2023

%Y Intersection of A014105 and A071562.

%Y Nonzero terms of A014107 without the terms of A298856.

%Y Cf. A067742, A236104, A237048, A237591, A237593, A262626, A240542.

%K nonn

%O 1,1

%A _Omar E. Pol_, Mar 10 2023

%E More terms from _Michel Marcus_, Mar 10 2023

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 May 17 19:50 EDT 2024. Contains 372607 sequences. (Running on oeis4.)