OFFSET
1,1
COMMENTS
The following numbers are in this sequence but not in A043758: 682, 1194, 1322, 1354, 1362, 1364, 1366, 1370, 1386, 1450, 1706, 2218, 2346, ...
The following numbers are in A043758 but not in this sequence: 5461, 9557, 10581, 10837, 10901, 10917, ... - R. J. Mathar, Feb 16 2013
MAPLE
A043737 := proc(n)
option remember;
if n = 1 then
10;
else
for a from procname(n-1)+1 do
if modp(A005811(a), 6) = 4 then
return a;
end if;
end do:
end if;
end proc: # R. J. Mathar, Feb 16 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
STATUS
approved