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!)
Search: a242176 -id:a242176
Displaying 1-9 of 9 results found. page 1
     Sort: relevance | references | number | modified | created      Format: long | short | data
A242177 Numbers k such that k*7^k + 1 is prime. +10
4
34, 1980, 9898 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[3500], PrimeQ[# 7^# + 1] &]
PROG
(Magma) [n: n in [0..3500] | IsPrime(n*7^n+1)];
(PARI) is(n)=ispseudoprime(n*7^n+1) \\ Charles R Greathouse IV, May 22 2017
CROSSREFS
Cf. similar sequences listed in A242176.
KEYWORD
nonn,more,bref
AUTHOR
Vincenzo Librandi, May 08 2014
EXTENSIONS
a(3) from Loeh's list (see Links) - Bruno Berselli, May 08 2014
STATUS
approved
A242178 Numbers k such that k*8^k + 1 is prime. +10
4
5, 17, 23, 1911, 20855, 35945, 42816 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[2000], PrimeQ[# 8^# + 1] &]
PROG
(Magma) [n: n in [0..2000] | IsPrime(n*8^n+1)];
(PARI) is(n)=ispseudoprime(n*8^n+1) \\ Charles R Greathouse IV, May 22 2017
CROSSREFS
Cf. similar sequences listed in A242176.
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, May 08 2014
EXTENSIONS
a(5)-a(7) from Loeh's list (see Links) - Bruno Berselli, May 08 2014
STATUS
approved
A242196 Numbers k such that k*12^k + 1 is prime. +10
3
1, 8, 247, 3610, 4775, 19789, 187895 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
Select[Range[2300], PrimeQ[# 12^# + 1] &]
PROG
(Magma) [n: n in [0..2300] | IsPrime(n*12^n+1)]
(PARI) is(n)=ispseudoprime(n*12^n+1) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Cf. similar sequences listed in A242176.
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, May 08 2014
EXTENSIONS
a(4)- a(7) from Loeh's list (see Links) - Bruno Berselli, May 08 2014
STATUS
approved
A242197 Numbers k such that k*14^k + 1 is prime. +10
3
3, 5, 6, 9, 33, 45, 243, 252, 1798, 2429, 5686, 12509, 42545 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[2000], PrimeQ[# 14^# + 1] &]
PROG
(Magma) [n: n in [0..2000] | IsPrime(n*14^n+1)];
(PARI) is(n)=ispseudoprime(n*14^n+1) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Cf. similar sequences listed in A242176.
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, May 08 2014
EXTENSIONS
a(10)-a(13) from Loeh's list (see Links) - Bruno Berselli, May 08 2014
STATUS
approved
A242198 Numbers k such that k*15^k + 1 is prime. +10
3
8, 14, 44, 154, 274, 694, 17426, 59430 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
Select[Range[2000], PrimeQ[# 15^# + 1] &]
PROG
(Magma) [n: n in [0..2500] | IsPrime(n*15^n+1)];
(PARI) is(n)=ispseudoprime(n*15^n+1) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Cf. similar sequences listed in A242176.
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, May 08 2014
EXTENSIONS
a(7)-a(8) from Loeh's list (see Links)
STATUS
approved
A242199 Numbers k such that k*16^k + 1 is prime. +10
3
1, 3, 55, 81, 223, 1227, 3012, 3301 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
Select[Range[2000], PrimeQ[# 16^# + 1] &]
PROG
(Magma) [n: n in [0..2000] | IsPrime(n*16^n+1)];
(Sage) [n for n in (1..2000) if is_prime(n*16^n + 1)] # Bruno Berselli, May 09 2014
(PARI) is(n)=ispseudoprime(n*16^n+1) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Cf. similar sequences listed in A242176.
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, May 08 2014
EXTENSIONS
a(7)-a(8) from Loeh's list (see Links)
STATUS
approved
A242269 Numbers n such that n*6^n+1 is semiprime. +10
1
3, 5, 11, 12, 18, 20, 21, 24, 25, 35, 43, 45, 53, 58, 61, 71, 73, 75, 123, 124, 140, 147, 157, 205, 208, 233, 243, 245, 293, 301 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The semiprimes of this form are: 649, 38881, 3990767617, 26121388033, 1828079220031489, 73123168801259521, 460675963447934977,...
464 is definitely in this sequence, however 436 may or may not be. - Carl Schildkraut, Aug 28 2015
A continuation in the range 302 ... 1000 would use all terms without "?" and potentially ?-marked terms corresponding to composites with unknown factorization: 436?, 464, 511?, 512, 613, 662?, 720, 730, 802?, 865?, 943. - Hugo Pfoertner, Aug 05 2019
LINKS
factordb.com, Status of 436*6^436+1.
MATHEMATICA
Select[Range[435], PrimeOmega[# 6^# + 1] == 2 &]
PROG
(Magma) IsSemiprime:=func<i | &+[d[2]: d in Factorization(i)] eq 2>; [n: n in [1..435] | IsSemiprime(s) where s is n*6^n+1];
(PARI) is(n)=bigomega(n*6^n+1)==2 \\ Anders Hellström, Aug 28 2015
CROSSREFS
Cf. similar sequences listed in A242203.
KEYWORD
nonn,more,hard
AUTHOR
Vincenzo Librandi, May 10 2014
EXTENSIONS
a(19)-a(30) from Carl Schildkraut, Aug 28 2015
STATUS
approved
A265013 Numbers n such that n*9^n + 1 is prime. +10
1
2, 12382, 27608, 31330, 117852 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All terms are even. - Robert Israel, Jan 18 2016
LINKS
MATHEMATICA
Select[Range[100000], PrimeQ[# 9^# + 1] &]
PROG
(PARI) for(n=1, 100000, if(isprime(n*9^n+1), print1(n, ", ")))
(Magma) [n: n in [0..100000] | IsPrime(n*9^n+1)];
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
STATUS
approved
A338412 Numbers k such that k * 20^k + 1 is prime. +10
0
3, 6207, 8076, 22356, 151456 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(6) > 219976.
LINKS
Wikipedia, Cullen number
MATHEMATICA
Select[Range[1, 10000], PrimeQ[n*20^n+1] &]
PROG
(PARI) for(n=1, 10000, if(isprime(n*20^n+1), print1(n, ", ")))
(Magma) [n: n in [1..10000] |IsPrime(n*20^n+1)]
CROSSREFS
Numbers k such that k * b^k + 1 is prime: A006093 (b=1), A005849 (b=2), A006552 (b=3), A007646 (b=4), A242176 (b=6), A242177 (b=7), A242178 (b=8), A265013 (b=9), A007647(b=10), A242196(b=12), A242197 (b=14), A242198 (b=15), A242199 (b=16), A007648 (b=18), this sequence (b=20).
KEYWORD
nonn,more,hard
AUTHOR
STATUS
approved
page 1

Search completed in 0.007 seconds

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | Mehr | 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 September 14 10:49 EDT 2024. Contains 375921 sequences. (Running on oeis4.)