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!)
A069494 Numbers n such that (reversal(n))^3 = reversal(n^3). Ignore leading 0's. 1
0, 1, 2, 7, 10, 11, 20, 70, 100, 101, 110, 111, 200, 700, 1000, 1001, 1010, 1011, 1100, 1101, 1110, 2000, 7000, 10000, 10001, 10010, 10011, 10100, 10101, 10110, 11000, 11001, 11010, 11011, 11100, 20000, 70000, 100000, 100001, 100010, 100011, 100100, 100101 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
For an arithmetical function f, call the arguments n such that f(reverse(n)) = reverse(f(n)) the "palinpoints" of f. This sequence is the sequence of palinpoints of f(n) = n^3.
LINKS
EXAMPLE
Let f(n) = n^3. Then f(1011) = 1033364331, f(1101) = 1334633301, so f(reverse(1011)) = reverse(f(1011)). Therefore 1011 belongs to the sequence.
MAPLE
r:= n-> (s-> parse(cat(seq(s[-i], i=1..length(s)))))(""||n):
q:= n-> is(r(n^3)=r(n)^3):
select(q, [$0..200000])[]; # Alois P. Heinz, Oct 22 2021
MATHEMATICA
rev[n_] := FromDigits[Reverse[IntegerDigits[n]]]; f[n_] := n^3; Select[Range[10^5], f[rev[ # ]] == rev[f[ # ]] &]
CROSSREFS
Sequence in context: A050596 A045266 A108493 * A134712 A030344 A190433
KEYWORD
nonn,base
AUTHOR
Joseph L. Pe, Apr 15 2002
EXTENSIONS
More terms from Alois P. Heinz, Oct 22 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 24 18:17 EDT 2024. Contains 371962 sequences. (Running on oeis4.)