A265727 Least primitive weird number, pwn, (A002975) which is divisible by the n-th prime (A000040).
70, 70, 836, 4030, 17272, 836, 7912, 7192, 4030, 113072, 83312, 7912, 8812312, 5830, 4199030, 9272, 91388, 10792, 23941578736, 786208, 682592, 569494624, 555616, 539744, 15126992, 73616, 519712
Offset: 3
Keywords
Examples
a(6) is 4030 since it is the first pwn to be divisible by the sixth prime number, 13. 4030 = 13 * 310.
Links
- Douglas E. Iannucci, On primitive weird numbers of the form 2^k*p*q, arXiv:1504.02761 [math.NT], 2015.
- Linked In, Number Theory, A very big weird number
- Giuseppe Melfi, On the conditional infiniteness of primitive weird numbers, Journal of Number Theory, Vol. 147, Feb 2015, pp. 508-514.
- Wikipedia, Weird number.
Crossrefs
Programs
-
Mathematica
(* copy the terms from A002975, assign them equal to 'lst' and then *) f[n_] := Select[lst, Mod[#, Prime@ n] == 0 &][[1]]; Array[f, 27, 3]
Comments