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

A056983
Primes p which divide Sum_{i=1..m} i! for some m (see A125138).
4
3, 11, 17, 23, 29, 37, 41, 43, 53, 67, 73, 79, 97, 101, 107, 109, 127, 131, 139, 149, 151, 157, 163, 173, 191, 199, 211, 229, 239, 251, 257, 263, 271, 281, 283, 293, 307, 311, 313, 331, 337, 347, 349, 359, 373, 379, 383, 389, 397, 409, 421, 433, 443, 449
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Smarandache-Wagstaff Function.
MAPLE
isA056983 := proc(p)
local idxp ;
if not isprime(p) then
return false ;
end if;
idxp := numtheory[pi](p) ;
if A125138(idxp) > 0 then
true ;
else
false ;
end if;
end proc:
A056983 := proc(n)
option remember ;
local p;
if n = 1 then
3;
else
p := procname(n-1) ;
while true do
p := nextprime(p) ;
if isA056983(p) then
return p;
end if;
end do:
end if;
end proc:
seq(A056983(n), n=1..70) ; # R. J. Mathar, Mar 26 2024
CROSSREFS
KEYWORD
nonn
STATUS
approved