|
| |
|
|
A110921
|
|
Numbers n such that n = R(digit_sum(n)) where R is the digit reversal and digit_sum is the digital sum.
|
|
1
| | |
|
|
|
OFFSET
| 1,2
|
|
|
REFERENCES
| Tricky Number, Science Illustrated, Jan/Feb 2009, p. 80. [From Jonathan Vos Post (jvospost3(AT)gmail.com), Dec 20 2008]
|
|
|
LINKS
| Masahiko Fujiwara, Title?.
|
|
|
FORMULA
| k such that A007953(k)*A004086(A007953(k)) = k. [From Jonathan Vos Post (jvospost3(AT)gmail.com), Dec 20 2008]
|
|
|
EXAMPLE
| Example: n = 1729: s = 1+7+2+9=19, 19*91=1729.
|
|
|
PROG
| #!/usr/bin/perl -w use strict; my $i; my $j; for $i ( 1e0 .. 1e6 ) { my $sum = 0; my $rev = 0; for $j ( 1 .. length ( $i ) ) { $sum += substr ( $i, $j - 1, 1 ); } $rev = reverse $sum; print "$i " if $sum * $rev == $i; }
|
|
|
CROSSREFS
| Cf. A004086, A007953. [From Jonathan Vos Post (jvospost3(AT)gmail.com), Dec 20 2008]
Sequence in context: A016768 A059977 A116205 * A203650 A096302 A107914
Adjacent sequences: A110918 A110919 A110920 * A110922 A110923 A110924
|
|
|
KEYWORD
| fini,full,nonn,base
|
|
|
AUTHOR
| Michael Vang (michael.vang(AT)gmail.com), Sep 22 2005
|
|
|
EXTENSIONS
| Edited by N. J. A. Sloane (njas(AT)research.att.com), Jan 15 2009, at the suggestion of Klaus Brockhaus
Edited by Charles R Greathouse IV (charles.greathouse(AT)case.edu), Aug 03 2010
|
| |
|
|