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!)
A178530 Numbers n with the property that there exist nonnegative integers a and b such that n = concat(a,b) = a^2+b^2. 1

%I #23 Aug 17 2013 13:28:21

%S 0,1,100,101,1233,8833,10100,990100,5882353,94122353,1765038125,

%T 2584043776,7416043776,8235038125,116788321168,123288328768,

%U 876712328768,883212321168,7681802663025,8896802846976,13793103448276,15348303604525,84651703604525,86206903448276,91103202846976,92318202663025,106058810243728

%N Numbers n with the property that there exist nonnegative integers a and b such that n = concat(a,b) = a^2+b^2.

%C The sum of two numbers a1 and a2 that share a common b has the form of 10^n. Example: 12 + 88 = 100

%C The ordered pair of the final digit of a and b is always one of (0,0), (0,1), (0,5), (0,6), (2,3), (8,3), (2,8), or (8,8).

%C If b has k decimal digits, then (2a - 10^k)^2 + (2b - 1)^2 = 10^(2k) + 1 giving a way for efficient computation of many terms. - _Max Alekseyev_, Aug 17 2013

%H Max Alekseyev, <a href="/A178530/b178530.txt">Table of n, a(n) for n = 1..200</a>

%e 0 = 0^2+0^2 [this seems a bit far-fetched. - _N. J. A. Sloane_, Dec 23, 2010]

%e 1=0^2+1^2 [ditto]

%e 100=10^2+0^2.

%e 101=10^2+1^2.

%e 1233=12^2+33^2.

%t Sort[Reap[Do[n=a^2+b^2; If[n==FromDigits[Join[IntegerDigits[a], IntegerDigits[b]]], Sow[n]], {a,0, 1000}, {b, 0, 1000}]][[2, 1]]]

%Y See A055616, A064942, A101311 for closely related sequences.

%K nonn,base

%O 1,3

%A _Karsten Meyer_, Dec 23 2010

%E Edited by _N. J. A. Sloane_, Dec 23 2010

%E a(11)-a(14) from _Nathaniel Johnston_, Jan 03 2011

%E Terms a(15) onward from _Max Alekseyev_, Aug 17 2013

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 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)