A135960 Indices where records occur in A134852.
1, 2, 4, 14, 37, 59, 144, 173
Offset: 1
Crossrefs
Extensions
a(7)-a(8) from Amiram Eldar, Sep 01 2019 (calculated from the b-file at A134852)
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.
k = {}; Do[If[ ! PrimeQ[2^Prime[n] - 1], c = FactorInteger[2^Prime[n] - 1]; d = Length[c]; AppendTo[k, d]], {n, 1, 40}]; k (PrimeNu /@ Select[2^Prime[Range[40]] - 1, ! PrimeQ[#] &]) (* Jean-François Alcover, Aug 13 2014 *)
forprime(p=1, 1e3, if(!ispseudoprime(2^p-1), print1(omega(2^p-1), ", "))) \\ Felix Fröhlich, Aug 12 2014
k = {}; Do[If[ !PrimeQ[Fibonacci[Prime[n]]], c = Length[FactorInteger[Fibonacci[Prime[n]]]]; If[c == 2, AppendTo[k, Fibonacci[Prime[n]]]]], {n, 1, 50}]; k Select[Fibonacci[Prime[Range[30]]],PrimeOmega[#]==2&] (* Harvey P. Dale, Feb 18 2012 *)
k = {}; Do[If[ ! PrimeQ[2^Prime[n] - 1], c = FactorInteger[2^Prime[n] - 1]; d = Length[c]; If[d == 3, AppendTo[k, 2^Prime[n] - 1]]], {n, 1, 40}]; k
k = {}; Do[If[ !PrimeQ[Fibonacci[Prime[n]]], c = Length[FactorInteger[Fibonacci[Prime[n]]]]; Print[n]; If[c > 4, Print[Fibonacci[Prime[n]]]; AppendTo[k, Fibonacci[Prime[n]]]]], {n, 1, 100}]; k
k = {}; Do[If[ !PrimeQ[Fibonacci[Prime[n]]], c = Length[FactorInteger[Fibonacci[Prime[n]]]]; If[c == 3, AppendTo[k, Fibonacci[Prime[n]]]]], {n, 1, 50}]; k
f(n) = forprime(x=2, n, p=fibonacci(x); if(!isprime(p) && omega(p) == 3, print1(p", "))) \\ Georg Fischer, Feb 15 2025
k = {}; Do[If[ !PrimeQ[Fibonacci[Prime[n]]], c = Length[FactorInteger[Fibonacci[Prime[n]]]]; If[c == 4, AppendTo[k, Fibonacci[Prime[n]]]]], {n, 1, 50}]; k
A135976 := proc(n) local i; i := 2^(ithprime(n))-1: if (nops(numtheory[factorset](i)) = 2) then RETURN (i) fi: end: [ seq(A135976(n), n=1..26) ]; # Jani Melik, Feb 09 2011
k = {}; Do[If[ ! PrimeQ[2^Prime[n] - 1], c = FactorInteger[2^Prime[n] - 1]; d = Length[c]; If[d == 2, AppendTo[k, 2^Prime[n] - 1]]], {n, 1, 40}]; k
forprime(p=1, 1e2, if(bigomega(2^p-1)==2, print1(2^p-1, ", "))) \\ Felix Fröhlich, Aug 12 2014
k = {}; Do[If[ ! PrimeQ[2^Prime[n] - 1], c = FactorInteger[2^Prime[n] - 1]; d = Length[c]; If[d == 2, AppendTo[k, Prime[n]]]], {n, 1, 40}]; k
Comments