The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A204932 Least k such that n divides k!-j! for some j satisfying 1<=j<k. 10
2, 3, 4, 3, 3, 4, 5, 5, 4, 6, 4, 5, 9, 6, 6, 5, 5, 4, 5, 6, 6, 4, 4, 5, 6, 9, 7, 8, 6, 6, 10, 5, 7, 6, 8, 7, 13, 5, 9, 6, 7, 6, 11, 7, 7, 8, 10, 5, 8, 6, 6, 9, 12, 7, 8, 8, 5, 6, 5, 6, 16, 10, 8, 9, 14, 7, 8, 11, 8, 8, 9, 7, 8, 13, 6, 7, 12, 9, 14, 7, 10, 7, 19, 8, 11, 11, 6, 7, 10, 7 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A204892 for a discussion and guide to related sequences.
LINKS
EXAMPLE
1 divides 2!-1!, so a(1)=2
2 divides 3!-2!, so a(2)=3
3 divides 4!-3!, so a(3)=4
13 divides 9!-4!, so a(13)=9
MATHEMATICA
s[n_] := s[n] = n!; z1 = 80; z2 = 60;
Table[s[n], {n, 1, 30}] (* A000142 *)
u[m_] := u[m] = Flatten[Table[s[k] - s[j], {k, 2, z1}, {j, 1, k - 1}]][[m]]
Table[u[m], {m, 1, z1}] (* A204930 *)
v[n_, h_] := v[n, h] = If[IntegerQ[u[h]/n], h, 0]
w[n_] := w[n] = Table[v[n, h], {h, 1, z1}]
d[n_] := d[n] = First[Delete[w[n], Position[w[n], 0]]]
Table[d[n], {n, 1, z2}] (* A204931 *)
k[n_] := k[n] = Floor[(3 + Sqrt[8 d[n] - 1])/2]
m[n_] := m[n] = Floor[(-1 + Sqrt[8 n - 7])/2]
j[n_] := j[n] = d[n] - m[d[n]] (m[d[n]] + 1)/2
Table[k[n], {n, 1, z2}] (* A204932 *)
Table[j[n], {n, 1, z2}] (* A204933 *)
Table[s[k[n]], {n, 1, z2}] (* A204934 *)
Table[s[j[n]], {n, 1, z2}] (* A204935 *)
Table[s[k[n]] - s[j[n]], {n, 1, z2}] (* A204936 *)
Table[(s[k[n]] - s[j[n]])/n, {n, 1, z2}] (* A204937 *)
CROSSREFS
Sequence in context: A352899 A119352 A205010 * A079086 A017839 A242294
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 21 2012
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 June 3 00:27 EDT 2024. Contains 373054 sequences. (Running on oeis4.)