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!)
A215619 a(n) is the number of consecutive terms of A100071, beginning with index n, which are divisible by n. 1
4, 1, 6, 1, 8, 1, 4, 1, 12, 5, 14, 1, 4, 1, 18, 1, 20, 1, 4, 1, 24, 1, 6, 1, 4, 1, 30, 21, 32, 1, 12, 1, 8, 1, 38, 1, 14, 1, 42, 1, 44, 1, 6, 1, 48, 1, 8, 1, 4, 1, 54, 1, 6, 9, 4, 1, 60, 1, 62, 1, 4, 1, 6, 1, 68, 1, 4, 1, 72, 1, 74, 1, 4, 1, 12, 1, 80, 1, 4, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
COMMENTS
a(n) = n+1 iff n is prime.
a(n) = 1 iff n in { A067315 }.
1 <= a(n) <= n+1.
{ n : a(2n)>1 } = { A058008 } \ { 1 }.
LINKS
MAPLE
b:= proc(n) b(n):= n * binomial(n-1, floor((n-1)/2)) end:
a:= proc(n) local k;
for k from 0 while irem(b(n+k), n)=0 do od; k
end:
seq (a(n), n=3..100); # Alois P. Heinz, Aug 17 2012
MATHEMATICA
b[n_] := n Binomial[n-1, Floor[(n-1)/2]];
a[n_] := Module[{k = 0}, While[Mod[b[n+k], n] == 0, k++]; k];
a /@ Range[3, 100] (* Jean-François Alcover, Nov 22 2020, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A185093 A010779 A354254 * A136706 A326478 A324118
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Aug 17 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 April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)