login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A004625 Numbers divisible only by primes congruent to 1 mod 8. 3
1, 17, 41, 73, 89, 97, 113, 137, 193, 233, 241, 257, 281, 289, 313, 337, 353, 401, 409, 433, 449, 457, 521, 569, 577, 593, 601, 617, 641, 673, 697, 761, 769, 809, 857, 881, 929, 937, 953, 977, 1009, 1033, 1049 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
ok[n_] := And @@ (#1[[2]] == 1 && Mod[#1[[1]], 8] == 1 & ) /@ FactorInteger[n]; Select[ Range[2000], ok] (* Jean-François Alcover, Mar 09 2012 *)
PROG
(Magma) [n: n in [1..2000] | forall{d: d in PrimeDivisors(n) | d mod 8 eq 1}]; // Vincenzo Librandi, Aug 20 2012
(PARI) is(n)=is(n%8!=1, return(0)); my(f=factor(n)[, 1]); for(i=1, #f~, if(f[i]%8!=1, return(0))); 1 \\ Charles R Greathouse IV, Jul 02 2016
CROSSREFS
Sequence in context: A263011 A263012 A172280 * A141174 A007519 A163185
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset changed from 0 to 1 by Vincenzo Librandi, Aug 20 2012
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)