7^k - 6^k -- prog.sf 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #!/usr/bin/ruby
  2. # Numbers n such that 7^n - 6^n is not squarefree, but 7^d - 6^d is squarefree for every proper divisor d of n.
  3. # https://oeis.org/A280307
  4. # Probably in the sequence:
  5. # 20, 26, 55, 68, 171, 258, 310, 381, 406, 506, 610, 689, 979, 1027, 1081, 1332, 3422, 3775, 3924, 4105, 4422, 4970, 5256, 5430, 5648, 5671, 6123, 6806, 8862, 9218, 9312, 9436, 9591, 9653, 10506
  6. #~ func f(k) {
  7. #~ k.divisors.first(-1).grep{_ < 150}.all {|d|
  8. #~ is_prob_squarefree(7**d - 6**d, 1e8)
  9. #~ #is_squarefree(7**d - 6**d)
  10. #~ }
  11. #~ }
  12. #~ for k in (1..100) {
  13. #~ var t = (7**k - 6**k)
  14. #~ if (!t.is_prob_squarefree(1e7) && f(k)) {
  15. #~ say k
  16. #~ }
  17. #~ else {
  18. #~ say "Counter-example: #{k}"
  19. #~ }
  20. #~ }
  21. #~ __END__
  22. func f(k) {
  23. k.divisors.first(-1).all {|d|
  24. is_prob_squarefree(7**d - 6**d)
  25. #is_squarefree(7**d - 6**d)
  26. }
  27. }
  28. for k in (1..30000) {
  29. var t = (7**k - 6**k)
  30. if (!t.is_prob_squarefree(1e6) && !t.is_prob_squarefree && f(k)) {
  31. print(k, ", ")
  32. }
  33. }