A077684 Squarefree numbers beginning with 8.
82, 83, 85, 86, 87, 89, 802, 803, 805, 806, 807, 809, 811, 813, 814, 815, 817, 818, 821, 822, 823, 826, 827, 829, 830, 831, 834, 835, 838, 839, 842, 843, 849, 851, 853, 854, 857, 858, 859, 861, 862, 863, 865, 866, 869, 870, 871, 874, 877, 878, 879, 881, 883
Offset: 1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[900],SquareFreeQ[#]&&First[IntegerDigits[#]]==8&] (* Harvey P. Dale, Feb 22 2011 *)
-
PARI
is(n)=n>81 && digits(n)[1]==8 && issquarefree(n) \\ Charles R Greathouse IV, Nov 05 2017
Extensions
More terms from Sascha Kurz, Jan 28 2003
Definition clarified by Harvey P. Dale, Feb 22 2011
Comments