A295592 Numbers k such that Bernoulli number B_{k} has denominator 64722.
66, 3894, 4686, 5214, 6402, 8382, 9174, 9834, 10362, 10758, 11022, 13134, 14718, 17754, 20262, 20922, 22242, 23034, 23298, 25014, 25278, 25674, 26466, 27786, 28974, 29634, 30162, 31614, 34386, 36102, 37554, 37686, 38742, 39534, 40722, 42438, 44418, 45606, 46266
Offset: 1
Examples
Bernoulli B_{66} is 1472600022126335654051619428551932342241899101/64722, hence 66 is in the sequence.
Links
- Seiichi Manyama, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Maple
with(numtheory): P:=proc(q, h) local n; for n from 2 by 2 to q do if denom(bernoulli(n))=h then print(n); fi; od; end: P(10^6,64722); # Alternative: # according to Robert Israel code in A282773 with(numtheory): filter:= n -> select(isprime, map(`+`, divisors(n), 1)) = {2, 3, 7, 23, 67}: select(filter, [seq(i, i=1..10^5)]);
Comments