Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #12 Aug 31 2024 04:25:30
%S 12,24,37,60,62,84,87,112,122,137,144,162,171,180,181,187,212,237,253,
%T 262,264,269,287,312,318,337,362,387,412,416,420,422,423,433,437,462,
%U 465,480,487,512,537,541,544,562,563,587,591,612,637,662,665,684,687
%N Numbers k such that gcd(2k+1, numerator(Bernoulli(4k+2))) is not squarefree.
%H Amiram Eldar, <a href="/A098242/b098242.txt">Table of n, a(n) for n = 1..1000</a>
%t Select[Range[700], !SquareFreeQ[GCD[2*# + 1, BernoulliB[4*# + 2]]] &] (* _Amiram Eldar_, Aug 31 2024 *)
%o (PARI) for(n=1,3000,if(!issquarefree(gcd(2*n+1,numerator(bernfrac(4*n+2)))),print1(n",")))
%Y Complement of A098240.
%Y Cf. A013929, A027641, A027642, A067778, A097704.
%K nonn
%O 1,1
%A _Ralf Stephan_, Sep 01 2004