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!)
A215659 Values of k such that k*(k - 1) is a primorial number. 5
2, 3, 6, 15, 715 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Values of k in A215658.
See A161620 for the primorial values. - Jeppe Stig Nielsen, Mar 27 2018
LINKS
Carol Nelson, David E. Penney and Carl Pomerance, 714 and 715, J. Recreational Math. 7:2 (1994), pp. 87-89.
FORMULA
a(n) * (a(n) - 1) = A215658(n)#, where p# = 2 * 3 * 5 * 7 * 11 * ... * p is a primorial, the product of the primes from 2 to p.
MATHEMATICA
Select[Range[10^5], Product[Prime@ i, {i, PrimeNu@ #}] == # &[# (# - 1)] &] (* Michael De Vlieger, Apr 10 2018 *)
PROG
(Python)
from sympy import primorial, integer_nthroot
A215659_list = []
for i in range(1, 10**2):
a, b = integer_nthroot(4*primorial(i)+1, 2)
if b:
A215659_list.append((a+1)//2) # Chai Wah Wu, Apr 01 2021
CROSSREFS
Sequence in context: A145781 A351880 A109162 * A028688 A342027 A343197
KEYWORD
nonn,more
AUTHOR
Jonathan Sondow, Sep 07 2012
EXTENSIONS
Name improved by Jeppe Stig Nielsen, Mar 27 2018
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)