cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A226603 Let c(n) be the n-th number in the sequence of odd composite numbers that are not squares of primes, and let p = c(n)*2^k + 1 (with k > 0) and m be the smallest integer satisfying congruence 2^m == 1 (mod p). The number a(n) is the least k such that p is prime and c(n) does not divide m, or 0 if no such value exists.

Original entry on oeis.org

1, 1, 2, 6, 13, 2, 9, 13, 2744, 2, 1, 93, 2, 1, 19, 15, 6, 6, 168, 6, 13, 2, 5, 1, 26, 91, 3, 6, 1, 5, 10, 18, 1, 293, 250, 11, 1, 41, 30, 5, 1, 8, 16, 4, 2, 497, 176316, 95, 4, 592, 65, 6, 3, 113, 36, 1
Offset: 1

Views

Author

Arkadiusz Wesolowski, Jun 13 2013

Keywords

Comments

Since 78557 is a Sierpinski number, a(31513) = 0. Are there any values of n so that a(n) = 0 and c(n) is not a Sierpinski number?

Crossrefs

Cf. A226025.

Programs

  • Mathematica
    lst = {}; Do[If[! PrimeQ[c] && ! PrimeQ@Sqrt[c], k = 1; While[True, p = c*2^k + 1; If[PrimeQ[p] && ! Divisible[MultiplicativeOrder[2, p], c], AppendTo[lst, k]; Break[]]; k++]], {c, 3, 185, 2}]; lst

Extensions

a(47)-a(56) from Arkadiusz Wesolowski, Jun 16 2013

A333326 Odd numbers k such that k is the product of 2 numbers greater than one, in two or more ways.

Original entry on oeis.org

45, 63, 75, 81, 99, 105, 117, 135, 147, 153, 165, 171, 175, 189, 195, 207, 225, 231, 243, 245, 255, 261, 273, 275, 279, 285, 297, 315, 325, 333, 345, 351, 357, 363, 369, 375, 385, 387, 399, 405, 423, 425, 429, 435, 441, 455, 459, 465, 475
Offset: 1

Views

Author

Dimitris Valianatos, Mar 15 2020

Keywords

Comments

Odd numbers that are not 1, a prime, the square or cube of a prime, or the product of two primes. - Robert Israel, Mar 19 2020

Examples

			For n=2 the a(2) = 63 because 63 = 3 * 21 and 7 * 9.
		

Crossrefs

Programs

  • Maple
    select(t -> numtheory:-tau(t) >= 5, [seq(i,i=3..1000,2)]); # Robert Israel, Mar 19 2020
  • Mathematica
    Select[2 * Range[250] + 1, DivisorSigma[0, #] > 4 &] (* Amiram Eldar, Mar 15 2020 *)
  • PARI
    forcomposite(n=4, 475, if(n%2 == 0, next()); if(numdiv(n) >= 5, print1(n,", "))); \\ Joerg Arndt, Mar 15 2020
Showing 1-2 of 2 results.