|
| |
|
|
A066270
|
|
Multiples of 24 whose digits also sum to 24.
|
|
1
| |
|
|
888, 1896, 1968, 2688, 2976, 3696, 3768, 3984, 4488, 4776, 4848, 4992, 5496, 5568, 5784, 5856, 5928, 6288, 6576, 6648, 6792, 6864, 6936, 7296, 7368, 7584, 7656, 7728, 7872, 7944, 8088, 8376, 8448, 8592, 8664, 8736, 8808, 8880, 8952, 9096, 9168, 9384
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,1
|
|
|
REFERENCES
| David Wells, The Penguin Dictionary of Curious and Interesting Numbers, p. 149 (Rev. ed. 1997).
|
|
|
LINKS
| Harry J. Smith, Table of n, a(n) for n=1,...,1000
|
|
|
EXAMPLE
| 6288 is included because it is divisible by 24 and its digits sum to 24.
|
|
|
MATHEMATICA
| Select[ Range[ 10000 ], Mod[ #, 24 ]==0&&Plus@@IntegerDigits[ # ]==24& ]
|
|
|
PROG
| (PARI) SumD(x)= { local(s=0); while (x>9, s+=x%10; x\=10); return(s + x) } { n=0; forstep (m=24, 10^9, 24, if (SumD(m) == 24, write("b066270.txt", n++, " ", m); if (n==1000, return)) ) } [From Harry J. Smith (hjsmithh(AT)sbcglobal.net), Feb 08 2010]
|
|
|
CROSSREFS
| Sequence in context: A136966 A202446 A043523 * A203724 A006915 A178270
Adjacent sequences: A066267 A066268 A066269 * A066271 A066272 A066273
|
|
|
KEYWORD
| nonn,base
|
|
|
AUTHOR
| Harvey P. Dale (hpd1(AT)nyu.edu), Jan 01 2002
|
|
|
EXTENSIONS
| OFFSET changed from 0,1 to 1,1 by Harry J. Smith (hjsmithh(AT)sbcglobal.net), Feb 08 2010
|
| |
|
|