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!)
A077220 a(1) = 1; thereafter a(n) is smallest number not occurring earlier such that a(n-1)+a(n) is a triangular number. 3

%I #25 Sep 24 2018 16:53:14

%S 1,2,4,6,9,12,3,7,8,13,15,21,24,31,5,10,11,17,19,26,29,16,20,25,30,36,

%T 42,49,56,22,14,41,37,18,27,28,38,40,51,54,66,39,52,53,67,69,84,87,33,

%U 45,46,32,23,43,35,70,50,55,65,71,34,44,47,58,62,74,79,57,48,72,64,89

%N a(1) = 1; thereafter a(n) is smallest number not occurring earlier such that a(n-1)+a(n) is a triangular number.

%C Conjectured to be a permutation of the natural numbers (cf. A099130). The first few fixed points are: 1, 2, 19, 92, 220, 467, 556, 616, 690, 842.

%H Zak Seidov, <a href="/A077220/b077220.txt">Table of n, a(n) for n = 1..1000</a>

%H <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a>

%e n=5: ss={1,2,4,6}; triangular numbers > 6 are 10,15,21; but 10-6=4 is in ss, hence a(5)=15-6=9;

%e n=6, ss={1,2,4,6,9}; triangular numbers > 9 are 10,15,21; but 10-9=4 and 15-9=6 are in ss, hence a(6)=21-9=12 etc.

%t tr=Table[n(n+1)/2, {n, 100}]; s={1}; a=1; Do[Do[tk=tr[[k]]; If[tk > a, b=tk-a; If[FreeQ[s, b], AppendTo[s, b]; a=b; Break[]]], {k, 100}], {99}]; s (* _Zak Seidov_, Jul 12 2010 *)

%o (PARI) v=[1]; n=1; while(n<100, if(ispolygonal(n+v[#v],3)&&!vecsearch(vecsort(v), n), v=concat(v, n); n=0); n++); v \\ _Derek Orr_, Jun 08 2015

%Y Cf. A000217, A125595, A125630, A099130.

%K nonn,easy

%O 1,2

%A _Amarnath Murthy_, Nov 03 2002

%E More terms from _Reinhard Zumkeller_, Sep 28 2004

%E Edited by _N. J. A. Sloane_ at the suggestion of _Andrew S. Plewe_, Jun 08 2007

%E Further edited by _N. J. A. Sloane_, Jul 11 2010, Jul 19 2010

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 March 28 07:20 EDT 2024. Contains 371235 sequences. (Running on oeis4.)