login

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”).

A335128
Records in A006863.
1
1, 24, 240, 504, 65520, 131040, 171864, 138181680, 6814407600, 20174525280, 45185409360, 558781423200, 685933859520, 2601256998740400, 4578654981700800, 15571124394460034400, 375159113055066740400, 124708934978441512498800, 127589793288205521873600, 8644416283014847832296800, 29217965124687229769336640
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Bernoulli Number.
MATHEMATICA
d[0] = 1; d[n_] := Denominator[BernoulliB[2*n]/(4*n)]; Union @ FoldList[Max, Array[d, 500, 0]] (* Amiram Eldar, May 03 2021 *)
PROG
(PARI) s=0; for(k=0, 1e3, t=if(k==0, 1, denominator(bernfrac(2*k)/(-4*k))); if(t>s, s=t; print1(s", ")))
CROSSREFS
Sequence in context: A003272 A003245 A006863 * A052663 A192491 A167548
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 24 2020
STATUS
approved