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!)
A083520 Primes p such that p-1 is a product of two or more consecutive integers. Or (p-1) is a permutation of m items chosen from n, for some m and n. p-1 = k*(k+1)(k+2)...(k+r) for some k and r, r>0. 3
3, 7, 13, 31, 43, 61, 73, 157, 211, 241, 307, 337, 421, 463, 601, 757, 991, 1123, 1321, 1483, 1723, 2521, 2551, 2731, 2971, 3307, 3361, 3541, 3907, 4423, 4831, 5113, 5701, 6007, 6163, 6481, 6841, 8011, 8191, 9241, 9901, 10303, 10627, 11131, 12211, 12433 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
61 is in this sequence as 60 = 3*4*5. 73 is in this sequence as 72 = 8*9.
MAPLE
isA083520 := proc(p)
local k, r, i, po;
for k from 1 to floor(sqrt(p)) do
for r from 1 do
po := product(k+i, i=0..r) ;
if po = p-1 then
return true;
elif po > p-1 then
break;
end if;
end do:
end do:
false ;
end proc:
n := 1 :
for c from 1 do
p := ithprime(c) ;
if isA083520(p) then
printf("%d %d\n", n, p) ;
n := n+1 ;
end if;
end do: # R. J. Mathar, Aug 23 2014
CROSSREFS
Sequence in context: A093431 A243765 A256148 * A336801 A162869 A079018
KEYWORD
nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), May 05 2003
EXTENSIONS
More terms from David Wasserman, Nov 19 2004
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 26 02:18 EDT 2024. Contains 371989 sequences. (Running on oeis4.)