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!)
A131663 Numbers k such that either k or k+1 is divisible by the numbers from 1 to 10. 1
720, 1799, 2519, 2520, 3240, 4319, 5039, 5040, 5760, 6839, 7559, 7560, 8280, 9359, 10079, 10080, 10800, 11879, 12599, 12600, 13320, 14399, 15119, 15120, 15840, 16919, 17639, 17640, 18360, 19439, 20159, 20160, 20880, 21959, 22679, 22680, 23400, 24479, 25199, 25200, 25920 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Also numbers k such that 2520 | k*(k+1). - David A. Corneth, May 06 2021
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000 (first 1001 terms from Harvey P. Dale)
FORMULA
a(n) = 2520 + a(n-4), n >= 5. - David A. Corneth, May 06 2021
EXAMPLE
720 is divisible by 2, 3, 4, 5, 6, 8, 9 and 10; while 721 is divisible by 7.
MATHEMATICA
Select[Range[30000], Mod[ #, 8]*Mod[ # + 1, 8] == 0 && Mod[ #, 9]*Mod[ # + 1, 9] == 0 && Mod[ #, 5]*Mod[ # + 1, 5] == 0 && Mod[ #, 7]*Mod[ # + 1, 7] == 0 && Mod[ #, 8]*Mod[ # + 1, 8] == 0 && Mod[ #, 6]*Mod[ # + 1, 6] == 0 && Mod[ #, 10]*Mod[ # + 1, 10] == 0 &]
Select[Range[23000], Take[Union[Join[Divisors[#], Divisors[#+1]]], 10] == Range[ 10]&]// Quiet (* Harvey P. Dale, Jul 03 2020 *)
PROG
(PARI) first(n) = { my(res = List([720, 1799, 2519, 2520])); for(i = 5, n, listput(res, res[i-4]+2520)); res } \\ David A. Corneth, May 06 2021
CROSSREFS
Cf. A002378.
Sequence in context: A067808 A302127 A291804 * A090392 A253734 A112530
KEYWORD
nonn,easy
AUTHOR
Tanya Khovanova, Sep 13 2007
EXTENSIONS
Offset changed to 1 by David A. Corneth, May 06 2021
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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)