A124105 Practical Fibonacci numbers.
1, 2, 8, 144, 46368, 832040, 14930352, 267914296, 4807526976, 1548008755920, 498454011879264, 160500643816367088, 2880067194370816120, 51680708854858323072, 16641027750620563662096, 5358359254990966640871840, 96151855463018422468774568, 1725375039079340637797070384
Offset: 1
Examples
144 is a member of this sequence because it is the 12th Fibonacci number and is also a practical number.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..108
- Giuseppe Melfi, A survey on practical numbers, Rend. Sem. Mat. Univ. Pol. Torino, 53, (1995), 347-359.
- Eric Weisstein's World of Mathematics, Practical Number.
Programs
-
PARI
is_A005153(n)=if(n%2,return(n==1)); my(P=1,f=factor(n)); for(i=2, #f~, if(f[i,1]>1+(P*=sigma(f[i-1,1]^f[i-1,2])), return(0))); n>0 print1(1); forstep(n=3,200,3,if(is_A005153(t=fibonacci(n)), print1(", "t))) \\ Charles R Greathouse IV, Oct 06 2013
Extensions
More terms from Charles R Greathouse IV, Oct 06 2013
Comments