login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A013584 Smallest m such that 0!+1!+...+(m-1)! is divisible by n, or 0 if no such m exists. 4
1, 2, 0, 3, 4, 0, 6, 0, 0, 4, 6, 0, 0, 6, 0, 0, 5, 0, 7, 0, 0, 6, 7, 0, 0, 0, 0, 0, 0, 0, 12, 0, 0, 5, 0, 0, 22, 7, 0, 0, 16, 0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 12, 0, 0, 0, 0, 0, 0, 0, 0, 54, 0, 42, 22, 0, 0, 6, 0, 0, 0, 0, 16, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
From Robert Israel, Nov 14 2016: (Start)
a(n) < n for n > 2.
If a(n) = 0, then a(mn) = 0 for all m>=2. (End)
REFERENCES
M. R. Mudge, Smarandache Notions Journal, University of Craiova, Vol. VII, No. 1, 1996.
LINKS
MAPLE
f:= proc(n) local t, r, m;
r:= 1; t:= 1;
for m from 1 do
r:= r*m mod n;
if r = 0 then return 0 fi;
t:= t + r mod n;
if t = 0 then return m+1 fi;
od;
end proc:
f(1):= 1:
map(f, [$1..100]); # Robert Israel, Nov 14 2016
MATHEMATICA
a[n_] := Module[{t, r, m}, r = 1; t = 1; For[m = 1, True, m++, r = Mod[r*m, n]; If[r == 0, Return[0]]; t = Mod[t+r, n]; If[t == 0, Return[m+1]]]];
Array[a, 100] (* Jean-François Alcover, Apr 12 2019, after Robert Israel *)
CROSSREFS
Sequence in context: A261094 A091538 A340991 * A307320 A350227 A137372
KEYWORD
nonn
AUTHOR
Michael R. Mudge (Amsorg(AT)aol.com)
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 23 21:24 EDT 2024. Contains 374571 sequences. (Running on oeis4.)