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!)
A329386 Numbers k such that k + A055012(k) is a square. 3
17, 104, 216, 260, 342, 392, 500, 518, 540, 590, 746, 830, 848, 1008, 1073, 1077, 1166, 1169, 1233, 1313, 1694, 1784, 1835, 1962, 1998, 2252, 2420, 2897, 3006, 3047, 3087, 3302, 3762, 4316, 4416, 4424, 4706, 4928, 5031, 5126, 5273, 5435, 6137, 6399, 6813, 7134, 7259, 7442, 7449, 7655, 7895, 7992 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(3)=216 is a term because 216 + 2^3 + 1^3 + 6^3 = 441 = 21^2.
MAPLE
filter:= proc(n) local t;
issqr( n + add(t^3, t=convert(n, base, 10)));
end proc:
select(filter, [$1..10000]);
PROG
(Magma) [k:k in [1..8000]|IsSquare(k+&+[c^3: c in Intseq(k)])]; // Marius A. Burtea, Nov 12 2019
(PARI) A055012(n)=sum(i=1, #n=digits(n), n[i]^3)
is(n)=issquare(n + A055012(n)) \\ Charles R Greathouse IV, Jun 10 2020
CROSSREFS
Sequence in context: A214632 A160219 A242316 * A095785 A194131 A194475
KEYWORD
nonn,base
AUTHOR
Will Gosnell and Robert Israel, Nov 12 2019
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 20:05 EDT 2024. Contains 371963 sequences. (Running on oeis4.)