cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A023088 Numbers k such that k and 4*k are anagrams.

This page as a plain text file.
%I A023088 #25 Jul 16 2018 10:38:55
%S A023088 0,1782,2178,16782,17604,17802,17820,17832,17982,18027,19728,19782,
%T A023088 20178,21678,21780,21783,21798,21978,23958,102564,103845,104769,
%U A023088 104895,105264,106254,114528,125406,125604,126054,128052,128205,140256,140526,142857
%N A023088 Numbers k such that k and 4*k are anagrams.
%C A023088 All terms are divisible by 3. - _Eric M. Schmidt_, Jul 12 2014
%H A023088 David W. Wilson, <a href="/A023088/b023088.txt">Table of n, a(n) for n = 1..10001</a>
%t A023088 si[n_] := Sort@ IntegerDigits@ n; Flatten@{0, Table[Select[Range[10^d + 2, 3 10^d - 1, 3], si[#] == si[4 #] &], {d, 0, 6}]} (* _Giovanni Resta_, Mar 20 2017, corrected by _Philippe Guglielmetti_, Jul 16 2018 *)
%t A023088 Select[Range[0,150000,3],Sort[IntegerDigits[#]]==Sort[ IntegerDigits[ 4#]]&] (* _Harvey P. Dale_, Dec 23 2017 *)
%Y A023088 Cf. A023086, A023087, A023089, A023090, A023091, A023092, A023093.
%K A023088 nonn,base
%O A023088 1,2
%A A023088 _David W. Wilson_