A123193 Natural numbers with number of divisors equal to a Fibonacci number.
1, 2, 3, 4, 5, 7, 9, 11, 13, 16, 17, 19, 23, 24, 25, 29, 30, 31, 37, 40, 41, 42, 43, 47, 49, 53, 54, 56, 59, 61, 66, 67, 70, 71, 73, 78, 79, 81, 83, 88, 89, 97, 101, 102, 103, 104, 105, 107, 109, 110, 113, 114, 121, 127, 128, 130, 131, 135, 136, 137, 138, 139, 149, 151, 152, 154, 157, 163, 165, 167, 169, 170, 173, 174, 179, 181, 182, 184, 186, 189, 190, 191, 193, 195, 197, 199, 211, 222, 223, 227, 229, 230, 231, 232, 233, 238, 239, 241, 246, 248, 250
Offset: 1
Keywords
Links
- T. D. Noe, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
lim = 250; t = Fibonacci /@ Range@ lim; Select[Range@ lim, MemberQ[t, DivisorSigma[0, #]] &] (* Michael De Vlieger, Sep 16 2015 *)
-
PARI
is(n)=my(k=numdiv(n)^2); issquare(k+=(k+1)<<2)||issquare(k-8) \\ Charles R Greathouse IV, Sep 16 2015
Comments